header{
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Contrail One", sans-serif;
  min-height: 90px;
  margin: 0;
  padding: 0;

}
header img{
  width: 80px;
  height: auto;
  border-radius: 100px;
}
header img:hover{
  cursor: pointer;
}
header a{
  text-decoration: none;
  color: black;
  font-size: 19px;
  padding: 4px;
  border: 1px solid;
  border-radius: 10px;
  margin: 0px;
  transition: 0.5s ease;
}
header a:hover{
  background-color: black;
  color: white;
  
}
header h1 {
  margin: 0;
  margin-left: 10px;
  animation: comeInLeft 2s ease
}
header h1:hover{
  cursor: pointer;
}
nav{
  display: flex;
  gap: 10px;
  margin-left: auto;
  margin-right: 10px;
  animation: comeInRight 2s ease
}
.trial-class-btn{
  /* padding: 0px;
  margin: 0px; */
  position: relative;
  /* animation: attention-text 2s ease;
  animation-iteration-count: infinite; */

}
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
hr{
  margin: 0px;
  padding: 0px;
}
@keyframes attention-text {
  50% {
    bottom: 2px;
    left: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
    text-decoration: underline;
  }
  100%{

  }
}
@media (max-width: 1050px){
  nav{
    flex-wrap: wrap;
  }
  .logo-container{
    position: relative;
    transform: none;
    left: 0%;
    margin-left: auto;
  }
}
@keyframes comeInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes comeInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}
