html {
    box-sizing: border-box;
    height: 100%;
    overscroll-behavior: none;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100vw;
    height: 100vh;
}

*, *:before, *:after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  user-select: none;
}

p {
  font-size: 14px;
}

input, textarea {
  box-sizing: border-box;
}

.material-symbols-rounded {
    font-variation-settings:'FILL' 0, 'wght' 500, 'GRAD' 0,'opsz' 24
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.hidden {
  max-width: 0 !important;
  max-height: 0 !important;
  display: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}


.hideScrollbars::-webkit-scrollbar {
  display: none;
}

.hideScrollbars {
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
    scrollbar-width: none;  /* Firefox */
}

.marquee1 {
  animation: marquee1 60s linear infinite;
}

@keyframes marquee1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-240vw);
  }
}

@media (max-width: 400px) {
@keyframes marquee1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-600vw);
  }
}
}



.marquee2 {
  animation: marquee2 45s linear infinite;
}

@keyframes marquee2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-220vw);
  }
}

@media (max-width: 400px) {
@keyframes marquee2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-550vw);
  }
}
}

input:placeholder{
  opacity: 0.5;
  color: inherit;
}

.breathe{
  animation: breatheAnimation 5s infinite ease-in-out;
}

@keyframes breatheAnimation {
  0% {
    transform: translateY(-5px);
  }

  50%{
     transform: translateY(5px);
  }

  100%{
transform: translateY(-5px);
  }
}