:root {
  --primary-blue: #8750F7;
  --primary-blue-dark: #9c6ade;
}

body {
  margin: 0;
  background-color: #121212;
  color: #dddddd;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container {
  width: 100%;
  max-width: 1024px;
  padding: 0px 40px;
}
h1 {
    font-size: 15rem;
    font-weight: 600;
    line-height: 0.9;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0;
}
h1::before {
  content: 'NUTRI BEAK';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Radial gradient that moves around */
  background: radial-gradient(circle at 0% 0%, #9c6ade 0%, #ffffff 50%, #9c6ade 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Add the animation */
  animation: gradientShift 6s ease-in-out infinite alternate;
}

/* Define the animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
h3, h4, h5, .grade-text {
  font-size: 3.5rem;
  background: linear-gradient(to right, #9c6ade, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
}
h4 {
  font-size: 2.2rem;
}
h5 {
  font-size: 1.5rem;
}
.grade-text {
  font-size: 20px; 
  font-weight: 400;
  line-height: initial;
}
p {
  line-height: 1.5;
}

.banner { 
  position: relative;
  min-height: 100vh;
  padding: 20px 0px; 
}
.banner img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}

.role-slide-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
}

.slide-in-right {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-top: 16px;
  padding-bottom: 12px;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}