/* General styles */

body {
    margin: 0;
    padding: 0;
    background-color: rgb(0,0,0);
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

img {
    height: auto;
    width: 100%;
}

/* main parts */

#container {
    position: relative;
    min-height: 100vh;
}

#foto {
    position: relative;
    width: 60%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

#slogan {
    position: relative;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 10px 0 30px 0;
    color: rgb(255,255,255);
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 2em;
}

#entrar {
    position: relative;
    width: 30%;
    height: 40px;
    margin: 0 auto;
    background-color: rgb(143,40,49);
    line-height: 40px;
    letter-spacing: 2px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    color: rgb(255,255,255);
    border-radius: 10px;
}

#entrar a {
    text-decoration: none;
    color: rgb(255,255,255);
}


/* Versión para móvles */

@media only screen and
    (max-width: 480px) {
        
        #foto {
            width: 100%;
            margin-top: 50px;
        }
        
        #slogan {
            font-size: 1.2em;
        }
        
        #entrar {
            width: 50%;
        }
}
