@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  background-color: #f9f9f9;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  animation: fadeInTop 0.8s ease-out forwards;
  opacity: 0;
}
.button {
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  width: 200px;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  opacity: 0;
  animation: fadeInBottom 0.8s ease-out forwards;
}
.button:nth-of-type(1) {
  animation-delay: 0.15s;
}
.button:nth-of-type(2) {
  animation-delay: 0.2s;
}
.button:nth-of-type(3) {
  animation-delay: 0.25s;
}
.button:nth-of-type(4) {
  animation-delay: 0.3s;
}
.button:hover {
  background-color: gold;
  color: #000;
}
h1:hover {
  cursor: default;
}
@keyframes fadeInTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

