@font-face {
    font-family: 'Montserrat Light';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-style: light;
    font-weight: light;
}

@font-face {
    font-family: 'Jiwaku Menanti';
    src: url('../fonts/Jiwaku\ Menanti.otf') format('truetype');
    font-style: normal;
    font-weight: normal;
}


body {
    background-color: black;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
   flex-direction: column;
}

.wrapper {
  flex: 1;
}

.fondo{
    width: 100%;
    background-image: url(../img/stills/11.jpg);
    background-size: cover;
    margin: auto;
    text-align: center;
    /*position: fixed;
    height: 100vh;*/
    position: relative;
}

.content{
    width: 100%;
    /*height: 100vh;*/
    background-color: rgba(0, 0, 0, 0.9);
    margin: auto;
    text-align: center;
    padding: 250px 0 100px 0;
    pointer-events: none;
    transition: all 3s ease;
}

.content:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.content .text-area{
    pointer-events: auto;
}

.content .text-area:hover{
    background-color: none;
}


.texto{
    width:60%;
    margin: auto;
    margin-top: 0;
    padding-bottom: 30px;
}

h1{
    color:#FFA800;
    font-size: 25vw;
    font-family: 'Jiwaku Menanti';
    font-weight: 400;
    margin:0;
    line-height: 0.5;
}

p{
    color: white;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Montserrat Light', sans-serif;
}

.p2{
    color:#FFA800;
}

button{
    background-color: #00000000;
    color: white;
    font-family: 'Montserrat Light';
    font-size: 16px;
    line-height: 1.5;
    border-radius: 25px;
    border-color: white;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    transition: all 1s ease;
}

button:hover{
    background-color: white;
    color: black;
}

#videoOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#videoOverlay video {
  width: 90%;
  max-height: 80%;
}

#closeButton {
  margin-top: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  z-index: 0;
  width: 100%;
  background-image: linear-gradient(#00000000, #000000);
  color: white;
  font-size: 14px;
}

.footer-right a {
  margin-right: 25px;
  outline: none;
  text-decoration: none;
  
}

.footer-right img {
  width: 28px;
  height: 28px;
  filter: invert(1); /* makes dark icons white */
  transition: transform 0.2s ease;
}

