html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #808080;
}

a {
    text-decoration: none;
    color: #808080;
}

#container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-image: url(../img/bg.jpg);
    background-position: middle center;
    background-repeat: no-repeat;
    background-size: cover;
}

#container .content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

#container .content h1 {
    font-size: 3em;
    margin-bottom: 1em;
}


@media screen and (max-width: 768px) {
    #container{
        background-image: url(../img/bg-mobile.jpg);
    }
    #container .content h1 {
        font-size: 2em;
        margin-bottom: 2em;
        margin-top: 1em;
    }
    
}




/* Titillium Web Font Styles */
.titillium-web-light {
    font-family: "Titillium Web", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.titillium-web-regular {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.redes a{
    margin: 0 10px;
    color: #808080;
    font-size: 0;
    display: inline-block;
    height: 32px;
    width: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 0.3s ease;
}

.redes a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.redes a.linkedin {
    background-image: url(../img/linkedin.svg);
}

.redes a.behance {
    background-image: url(../img/behance.svg);
}