@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kumbh+Sans:wght@100..900&display=swap");

:root {
  --bright-red: hsl(12, 88%, 59%);
  --semi-bright-red: hsl(12, 82%, 64%);
  --base-bright-red: hsl(12, 84%, 74%);
  --dark-blue: hsl(228, 39%, 23%);
  --dark-grayish-blue: hsl(227, 12%, 61%);
  --very-dark-blue: hsl(233, 12%, 13%);
  --very-pale-red: hsl(13, 100%, 96%);
  --very-light-gray: hsl(0, 0%, 98%);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  scroll-behavior: smooth;
  font-family: "Be Vietnam Pro", sans-serif;
}

html {
  overflow-x: hidden;
  --scroll-behavior: smooth !important;
  scroll-behavior: smooth !important;
}

body button {
  background-color: var(--bright-red);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 1rem;
}

section:nth-of-type(4) {
    width: 100vw;
    height: auto;
    background-color:hsl(12, 88%, 59%);
}

.blurry {
  box-shadow: 2px 6px 7px var(--base-bright-red);
}

body button:hover {
  background-color: var(--semi-bright-red);
}

nav a:hover {
  color: var(--dark-grayish-blue);
}

#genText {
  color: black;
}

.genText2 {
  color: var(--dark-grayish-blue);
}

.scroll-cover {
  animation: scroll1 15s infinite linear;
}

.carousel:hover .scroll-cover {
  animation-play-state: paused;
}

@keyframes scroll1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 760px) {
  .scroll-cover {
    animation: unset;
  }
}

.white-btn:hover{
  background-color: rgb(234, 234, 234);
}
