:root {
    --color-oscuro: #036280;
    --color-medio: #378BA4;
    --color-claro: #81BECE;
    
}

* {
    color: white;

}

a{
    text-decoration: none;
}

#Video_fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

main{
    width: 100%;
    display: flex;
    justify-content: center;
}

#contenedor{
    width: 80%;
    margin-top: 50px;
    background-color: var(--color-oscuro);
    border-radius: 20px;

    h1 {
        display: flex;
        justify-content: center;
    }

    #video {
        display: flex;
        justify-content: center;
        margin: 30px 0;
        
        iframe {
            max-width: 90%; /* Para que no se salga en móviles */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
    }
}

#boton{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    padding-top: 20px;

    a{
        width: 150px;
        height: 50px;
        background-color: #012E4A;
        border-radius: 10px;

        display: flex;
        justify-content: center;
        align-items: center;
        
        &:hover{
            scale: 1.1;
            transition: ease-in-out;
            transition-duration: 500ms;
        }
    }
}
p > a{
    padding: 5px;
    color: var(--color-claro);
    background-color: #012E4A;
    border-radius: 5px;

    &:hover{
        color: var(--color-medio);
    }
}

article{
    margin-left: 30px;
}

code {
    padding: 2px 5px;
    color: var();
    font-weight: bold;
}

.step {
    padding: 10px;
    margin-bottom: 10px;
}

ul {
    list-style-type: square;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;

    margin-top: 200px;
    background-color: #012E4A;
    opacity: 0.8;

    height: 150px;
    width: 100%;

    
}

footer > a {
    transition-property: all;
    transition-duration: 1s;
}