@charset "utf-8";
@import "reset.css";

/* reset  */

body { margin: 0 auto; }

.main { width: 100%; height: 100%; width: 100vw; height: 100vh; overflow: hidden; background-image: url('imgs/fondo.jpg'); background-repeat: no-repeat; background-position: bottom; background-size: auto 100%; }

#content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
}
#content .layer {
    padding: 0 10px;
}
#content .layer + .layer {
    margin-top: 3em;
}
#content img {
    max-width: 100%;
}
#content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    max-width: 600px;
    margin: 0;
    line-height: 2.5em;
    text-align: center;
}
#content p a {
    color: #333;
    text-decoration: none;
    position: relative;
}
#content p a:after {
    background-color: #333;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
    -webkit-transition: width 300ms ease;
    -o-transition: width 300ms ease;
    transition: width 300ms ease;
    width: 0;
}
#content p a:hover:after {
    width: 100%;
}
#content p strong {
    font-size: 19px;
    font-weight: 700;
}