.main {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 100vh;
  width: 100%;
  position: relative;
}

.main-contain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  font-family: "Righteous";
  color: var(--blanco);
}
.main-contain video {
  position: fixed;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
.main-contain h1 {
  text-shadow: 1px 1px #000;
  color: var(--blanco);
  margin: 0;
}
.main p {
  text-align: center;
  font-size: 1rem;
  /* width: 75%; */
  margin: 0 auto;
  text-shadow: 1px 1px #000;
}
.main-btn-contacto {
  color: var(--blanco);
  text-decoration: none;
  padding: 3% 10%;
  /* margin-top: 3%; */
  background-color: var(--azulfuerte);
  border-radius: 25px;
  font-size: 0.75rem;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.main-btn-contacto:hover {
  color: var(--azulfuerte);
  background: var(--blanco);
  box-shadow: 0 0 30px 10px #fff;
}
@media screen and (min-width: 768px) {
  .main-btn-contacto {
    padding: 1% 4%;
  }
  .main p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 980px) {
  .main-contain {
    justify-content: flex-end;
    padding: 0 0 10%;
  }
}
.floating-icons {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 2%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 4;
  transition: 0.3s transform ease-in-out;
}
.floating-icons img {
  max-width: 50px;
}

.floating-icons:hover {
  transform: scale(1.2);
}
