* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000 url(../img/cover.webp) no-repeat fixed;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
}

.center {
    width: 96%;
    margin: 0 auto;
    max-width: 768px;
}

/* - - - Header - - - */
header {
    background: rgba(255, 255, 255, .4);
    padding: .8em 0;
    text-align: center;
}

header h2 {
    font-size: 2.2em;
    font-weight: 200;
}


/* - - - Main - - - */

main {
    text-align: center;
}

#foto img {
    display: block;
    margin: 2em auto;
    max-width: 60%;
    height: auto;
    border-radius: 30% 0;
    border: 2px solid rgba(255, 255, 255, .2);
    opacity: .8;
}
#texto h1 {
    font-size: 1.9em;
    font-weight: 200;
    letter-spacing: .04em;
    margin: 1em 0 0.5em;
}
#texto h2 {
    font-weight: 200;
    letter-spacing: .04em;
    margin: 2em 0 0.8em;
}
#texto ul {
    list-style: none;
    line-height: 1.7;
}
#texto ul:last-child {
    padding-bottom: 1em;
}


#texto li {
    letter-spacing: .03em;
    margin-bottom: .9em;
    font-size: 1.1em;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #deb887;
}

a:hover {
    color: #eee;
}




@media screen and (min-width:960px) {
    .center {
        width: 90%;
        max-width: 1280px;
    }
    header, main {
        text-align: left
    }

    main {
        display: flex;
        justify-content: space-between;
    }
    
    #foto {
        width: 30%;
    }
    #foto img {
        max-width: 100%;
        display: block;
        margin-left: 0;
    }

    #texto {
        width: 69%;
    }
    #texto ul {
        padding-left: 1em;
    }

}
