@import url("https://use.typekit.net/zfy2pja.css");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5rem 0rem;
}

.container-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.video-background {
  z-index: -2;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.container-video::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 25%,
    rgba(0, 0, 0, 0.2) 80%
  );
}

.contenido {
  width: 70%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.secar-img {
  width: 32rem;
}

.texto {
  text-align: center;
  font-family: "gesta", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: aliceblue;
  font-size: 2.8rem;
}
