html {
    box-sizing: border-box;
    font-size: 62.5%; /** Reset para REMS - 62.5% = 10px de 16px **/
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-size: 1.6rem;
    line-height: 2;
}
/* Header */
.site-header {
    background-image: url(../img/LTB.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}
.site-header .contenedor {
    padding-top: 2%;
    display: block;
    text-align: center;
}
.site-header .contenedor .logo {
    background-image: url(../img/MM-logo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    min-height: 50vh;
}
@media (min-width: 768px) {
    .site-header .contenedor .logo {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 37%;
        min-height: 55vh;
    }
}
.site-header .contenedor .reproductor iframe {
    margin-top: 2%;
}
@media (min-width: 768px) {
    .site-header .contenedor .reproductor iframe {
        width: 65%;
    }
}
.site-header .contenedor .navegacion a {
    margin-top: 1rem;
    padding-right: 4rem;
    text-decoration: none;
}
@media (min-width: 768px) {
    .site-header .contenedor .navegacion a {
        margin-top: 1rem;
        padding-right: 5rem;
        text-decoration: none;
    }
}
.site-header .contenedor .navegacion a:last-child {
    padding-right: 0;
}
.footer {
    padding: 10rem 0 0 0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    color: #ffffff;
}
@media (min-width: 768px) {
    .footer {
        padding: 10rem 0 0 0;
        font-family: 'Courier New', Courier, monospace;
        text-align: center;
        color: #ffffff;  
    }
}
.footer p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .footer p {
        margin: 0;
        font-weight: bold;
        font-size: 1.2rem;
    }
}
.footer p a {
    text-decoration: none;
    color: #ffffff;
}