body {
  font-weight: 500;
  font-style: normal;
  padding: 0;
  margin: 0;
}

.about {
  display: flex;
  padding: 50px 110px;
  display: block;
  text-align: center;
  background-color: #F4FFA1;
}

.about-head {
  font-size: 2.6rem;
  color: var(--main-bg-green);
  margin-top: 0px;

}

.home-slider {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 70vh;
  margin-top: -40px;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  transition: 1s;
  position: absolute;
  object-fit: cover;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.arrow {
  z-index: 2;
  font-size: 20px;
  color: #F4FFA1;
  border-radius: 4px;
  border: none;
  background: none;
  cursor: pointer;
  text-shadow: 2px 2px 4px #000000;
}

.left-arrow {
  left: 8px;
  position: absolute;
}

.right-arrow {
  right: 8px;
  position: absolute;
}


.hidden {
  display: none;
}

.slide {
  text-shadow: 4px 4px 4px #000000;
}

.div-header {
  color: white;
  position: absolute;
  width: 60%;
  left: 10%;
  top: 30%;
  font-family: 'taco-lon', 'IBM Plex Sans Condensed', 'sans-serif';
  font-size: clamp(35px, 5.5vw, 50px);
}

.div-content {
  color: white;
  position: absolute;
  left: 10%; 
  top: 50%;
  font-family: 'taco-avenir', 'IBM Plex Sans Condensed', 'sans-serif';
  font-size: clamp(24px, 2.7vw, 30px);
  width: 65%;
}

.bottom-left-button {
  position: absolute;
  bottom: 10%;
  left: 10%;
  padding: 8px 16px;
  background-color: var(--main-bg-green);
  color: #F4FFA1;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.5em;
}

.bottom-left-button:hover {
  background-color: #F4FFA1;
  color:  var(--main-bg-green);
}



@media only screen and (max-width: 768px) {

  .home-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-top: -40px;
    height: 60vh;
  }

  .slide {
    text-shadow: 2px 2px 2px #000000;
  }
  
  .div-header {
    color: white;
    position: absolute;
    width: 90%;
    left: 5%;
    top: 20%;
    font-family: 'taco-lon', 'IBM Plex Sans Condensed', 'sans-serif';
    font-size: 2.5rem;
  }

  .about {
    padding: 45px 20px;
  }
  
  .div-content {
    color: white;
    position: absolute;
    left: 7%; 
    top: 52%;
    font-family: 'taco-avenir', 'IBM Plex Sans Condensed', 'sans-serif';
    font-size: 1.2rem;
    width: 80%;
  }

  .bottom-left-button {
    bottom: 2%;
    left: 5%;
    border-radius: 3px;
    font-size: 1em;
  }

  .left-arrow {
    left: 4px;
    position: absolute;
  }
  
  .right-arrow {
    right: 4px;
    position: absolute;
  }

  .announcement-content {
    display: inline-block;
    padding-left: 50%;
    animation: scroll 20s linear infinite;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
}


#announcement-banner {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: #f70404;
  color: #F4FFA1;
  text-align: center;
  padding: 10px 0;
  font-size: 24px;
  font-weight: 400;
  z-index: 1000;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-content {
  display: inline-block;
  padding-left: 50%;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

