/* estilos caja del slogan con las palabras movibles -----------------------------------------------------------*/
body{
    overflow-x: hidden;
}
.video{
    margin-top: 50px;
}
.slogan{
    display: flex;
    justify-content: space-between;
}
.typed{
    color: #b8c66c;
    font-family: extra-light;
}
.titulo{
    color: white;
    font-size: 90px;
    font-family: graphie-bold;
}
.contenedor{
    box-sizing:border-box;
    left:40%;
    padding: 10vmin;
    position: fixed;
    top:50%;
    transform:translate(-50%, -50%);
    width: 1100px;
}
.video{
    width: 100%;
}
@media screen and (max-width: 1050px){
    .contenedor{
        transform: translate(-40%, -120%);
    }
}
@media screen and (max-width: 950px){
    .titulo{
        font-size: 65px;
    }
    .contenedor{
        transform: translate(-40%, -120%);
        margin-left: 10%;
    }
}
@media screen and (max-width: 600px){
    .titulo{
        font-size: 40px;
        margin-left: 10%;
    }
    .contenedor{
        margin-left: 10%;
        height: 400px;
        transform: translate(-70%, -50%);
    }
}
@media screen and (max-width: 430px){
    .titulo{
        font-size: 30px;
    }
    .contenedor{
        position: absolute;
        width: 80%;
        height: fit-content;
        top: 20%;
        left: 40% ;
    }
}