*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Raleway', sans-serif;
    overflow: hidden;
}

header{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}


.imagen {
    position: absolute;
    top: 10%;
    left: 2%;
    right: 0;
    text-align: center;
    display: flex;
    z-index: 5px; 
  }

  .imagen {
    display: block;
    max-width: 100%;
    height: auto;
  }
  

video{
    width: 100%;
}

.absolute{
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items:center;
    animation: fadeIn 1.5s ease forwards;
}

.texto{
    width: 100%;
    height: 120%;
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items:center;
    animation: fadeIn 1.5s ease forwards;
}

.button {
    position: absolute;
    z-index: 9999;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: transparent;
    color: #f8f7f7;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .button:hover {
    background-color: transparent;
    color: #6EC1E4;
    border: 2px solid #6EC1E4;
  }
  
  .button:active {
    background-color: #1ccbf7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 480px) {
    .button {
      font-size: 14px;
    }
  }
  
  
h1{
    font-size: 80px;
    font-weight: 800;
    z-index: 100;
    color:#fff;
    margin-bottom: 10px;
}

h2{
    font-weight: 800;
    z-index: 100;
    color:#fff;
}

.texto {
  font-size: 18px;
}

@media (max-width: 767px) {
  .texto {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .texto {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .texto {
    font-size: 12px;
  }
}


.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.575);
}

@media screen and (max-width: 800px){
    h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 500px){
    h1{
        font-size: 30px;
        margin-bottom: 0;
    }

    h1::after{
        display: none;
    }
}

