* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

#video-background {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  /* display: flex;
  align-items: center; */
}

#video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#main-menu {
  width: 100%;
  top: 0;
  margin: 0 auto;
  color: white;
  font-weight: 400;
  align-content: center;
  position: sticky;
  padding: 20px 20px;
}

#main-logo {
  width: 75px;
  display: inline-block;
}

ul {
  list-style-type: none;
  display: inline-block;
}

li {
  display: inline-block;
  margin: 0 1.5rem;
}

.menu {
  position: absolute;
  top: 20px;
  right: 0;
}

li:last-child {
  background-color: #f4df03;
  padding: 0.2rem 1rem;
  border-radius: 200px;
  border: 1px solid white;
  color: #181713;
}

.menu-item:hover {
  border-bottom: 3px solid #f4df03;
}

li:last-child:hover {
  background-image: linear-gradient(45deg, red, yellow);
  color: white;
}

#hero {
  width: 90%;

  margin: 0 auto;
  margin-top: 25vh;
  /* border: 1px solid red; */
}

button {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1.1rem;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.1rem;
}

#hero h2 {
  color: white;
  font-size: 1rem;
  font-weight: 300;
  width: 100%;

  margin-bottom: 1rem;
}

.container {
  width: 100%;
  height: 10vh;
  background-color: transparent;
  background-image: linear-gradient(#070811, #231b2c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: left;
}

.container h1 {
  font-size: 3rem;
  font-weight: 600;
}

span {
  color: #f4df03;
}

.sticky-scrolled {
  background-color: #0c0d1b;
  transition: 1s ease;
  box-shadow: 1px 0 10px white;
  z-index: 2;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
