@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(white, rgb(249, 220, 226));
}
.wrapper {
  display: flex;
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
}

section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation img {
  width: 120px;
  transition: 0.5s;
}

.navigation li {
  list-style: none;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 4px;
  background: #fff;
  padding: 3px 3px 0;
  opacity: 0.7;
  transition: 0.5s;
}

img:hover {
  width: 150px;
}

li:hover {
  opacity: 1;
}

.text {
  padding: 15px;
  text-align: center;
  font-size: 13.5px;
}

#next {
  text-decoration: none;
  color: orangered;
}
#next:hover {
  font-size: 17px;
}
