@tailwind base;
@tailwind components;
@tailwind utilities;

/* section {
  background-image: url(../img/What\ to\ expect\ when\ studying\ computer\ science.jpeg);
  background-size: cover;
  height: 100vh;
} */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.accordion-content.open {
  max-height: 500px; /* Adjust as needed */
}
/* .hidden {
  display: none;
} */

