@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 3s ease-out, transform 3s ease-out;
}
.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}
.logo h1{
  font-weight: 200;
}
span{
  font-weight: 400;
}
.fade-in-up img{
  object-fit: contain;
}
#about h2{
  font-size: 25px;
}
#events h2{
  font-size: 25px;
}
#contact h2{
  font-size: 25px;
}
#shedule-box2 {
  width: 100%;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  #shedule-box2 {
    display: none;
  }
}

#shedule-box2 .box-left {
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.box-left h4 {
  letter-spacing: 1px;
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
}

.box-right h4 {
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 400;
}

#shedule-box2 .box-right {
  text-transform: uppercase;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 50%;
  background-color: black;
}
