@tailwind base;
@tailwind components;
@tailwind utilities;

.content {
  text-align: center;
  padding: 0 150px;
}
.overlay {
  opacity: 0.6;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about,
#contact {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.animate {
  opacity: 1;
  animation: appear 1s ease-in-out forwards;
}

@media (max-width: 768px) {
  .content {
    text-align: center;
    padding: 0 50px;
  }
}

/* Ensure the popup is initially hidden and only appears when triggered */
#popup {
  display: none; /* Hidden by default */
}

#popup.show {
  display: flex; /* Show when the 'show' class is added */
}

