body {
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 10px;
}

h1 span {
    text-transform: uppercase;
    font-weight: bold;
}

h2 {
    text-align: justify;
}

#home {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    background: #cdcdcd url('../img/eneri-beauty-home.jpeg');
    background-size: cover;
    background-position: right -100px top;
}

#home:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 0.3);
}

#home .container {
    position: relative;
}

.content {
    padding-right: 65px;
}

.links {
    margin-top: 50px;
}

ul.socials {
    list-style-type: none;
    padding-left: 0;
}

ul.socials li {
    display: inline-block;
    margin: 0px 12px;
}

ul.socials li:first-of-type {
    display: inline-block;
    padding-left: 0;
    margin-left: 0;
}

ul.socials li a {
    color: #fff;
    font-size: 2rem;
}

img.logo {
    width: auto;
    height: 100px;
    margin-bottom: 50px;
}

.copyright {
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    #home {
        background-position: center;
    }
    #home:before {
        background: rgb(0, 0, 0, 0.4);
    }
    .content {
        padding-right: 20px;
        padding-left: 20px;
    }
    ul.socials li {
        margin: 0px 20px;
    }
}