* {
  box-sizing: border-box;
}

.homepage-banner-h1 {
  color: #fff;
  font-family: 'K2D', sans-serif;
  /* font-size: 22px; */
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.homepage-banner-h1 span {
  font-size: 40px;
  /* margin-left: -191px; */
}

.message {
  background-color: #1cafec;
  color: #fff;
  display: flex;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-left: 0.5rem;
  /* top: 0; */
  animation: openclose 5s ease-in-out infinite;
  left: 585px;
  flex-direction: column;
}

.word1, .word2, .word3, .word4, .word5, .word6, .word7 {
  font-family: 'K2D', sans-serif;
  width: max-content;
}

@keyframes openclose {
  0% {
    top: 0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 271px;
  }
  30% {
    top: 0.2rem;
    width: 271px;
  }
  33% {
    top: 0.2rem;
    width: 0;
  }
  35% {
    top: 0.2rem;
    width: 0;
  }
  38% {
    top: -4.5rem;
    
  }
  48% {
    top: -4.5rem;
    width: 239px;
  }
  62% {
    top: -4.5rem;
    width: 239px;
  }
  66% {
    top: -4.5rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -9rem;
    width: 300px;
  }
  95% {
    top: -9rem;
    width: 300px;
  }
  98% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}


/* small-screen.css */

/* Media Query for smaller screens */
@media screen and (max-width: 768px)
{

        .homepage-banner-h1 {
            color: #fff;
            font-family: 'K2D', sans-serif;
            /* font-size: 42px; */
            font-weight: 100;
            line-height: 1.5;
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            z-index: 2;
            display: flex;
            margin: 0 auto;
            flex-direction: column;
            width: 100%;
        }
        
        .message {
            background-color: #1cafec;
            color: #fff;
            display: flex;
            font-weight: 900;
            overflow: hidden;
            position: absolute;
            /* padding-left: 0.5rem; */
            /* top: 0; */
            /* animation: openclose 5s ease-in-out infinite; */
            left: 154px;
            font-size: 27px;
        }
        
        .homepage-banner-h1 span {
            font-size: 20px;
            margin-left: 0;
        }

}
