@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&family=Poppins:wght@300;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-size: center;
}

.navegacion {
  width: 90%;
  padding: 30px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner {
  background-image: url("../img/iniciarsesion2.jpg");
}

.logo {
  font-size: 2.3rem;
  cursor: pointer;
  color: #091b7e;
  font-family: "Mochiy Pop P One", sans-serif;
}

.navegacion ul li {
  list-style: none;
  display: inline-block;
  margin: 12.5px;
}

.navegacion ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #091b7e;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

li a:hover {
  opacity: 0.5;
  transition: 0.5s;
}

.contenido {
  width: 100%;
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.contenido h1 {
  margin-top: 80px;
  font-size: 5.5rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

button {
  width: 200px;
  padding: 12px;
  margin: 10px 5px;
  text-align: center;
  border: none;
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

button:hover {
  background-color: rgb(72, 0, 255);
  transition: 0.5s;
  color: #fff;
}

.banner video {
  position: absolute;
  right: 0;
  bottom: 0;

  z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
  .banner video {
    width: 100%;
    height: auto;
  }
}
