/* Animation styles */
.fade-in {
  animation: fadeIn 3s ease-out forwards;
}

.subtitle-fade-in {
  opacity: 0;
  animation: fadeIn 4s ease-out forwards;
  animation-delay: 2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Body styles */
body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Container styles */
.container {
  width: 80%;
  height: 75vh;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f7f6eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Text styles */
.text-center {
  color: #333333;
  text-align: center;
}

h1.text-center {
  font-size: 48px;
}

.subtitle-fade-in {
  font-size: 24px;
}
@media (max-width: 768px) {
  h1.text-center {
    font-size: 24px;
  }
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  padding-right: 20px;
  margin-top: auto;
}

.social-icons a {
  color: #333;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Positioning */
.absolute-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
