body {
    padding: 0;
    margin: 0;
    background-color: #000;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    color: black;
    font-size: 24px;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
}
a {
    text-decoration: none;
    color: #000077;
}
a:hover {
    color: #FFF;
}

/* NAVIGATION */
.navigation {
    width: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    height: 100px;
    font-size: 30px;
    z-index: 999;
    border-bottom: 3px solid darkgoldenrod;
}
.navigation a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    line-height: 72px;
    height: 72px;
}
.navigation a:hover {
    background: #ddd;
    color: black;
}
a.nav-logo {
    margin-right: 8%;
}
a.nav-logo:hover {
    background: #000 !important;
    color: black;
}


/* CONTENT */
.content {
    position: relative;
    margin: 0 auto;
    width: 100%;
    background-color: #FFF;
    opacity: 0.8;
    margin-top: 100px;
    margin-bottom: 30px;
    height: 100%;
    overflow: auto;
    text-align: center;
    min-height: 450px;
}
.content::before {
    content: "";
    position: absolute;
    margin: 0 auto;
    width: 100%;
    top:0;
    left: 0;
    background-color: gray;
    opacity: 0.8;
    height: 100%;
    overflow: hidden;
    background-image: url('/images/test3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    min-height: 300px
}
.content_privacy {
    position: relative;
    margin: 0 auto;
    width: 100%;
    background-color: #ccc;
    opacity: 0.8;
    margin-top: 100px;
    margin-bottom: 30px;
    height: 100%;
    overflow: auto;
    text-align: center;
    min-height: 300px;
}
/* FOOTER */
.footer {
    width: 100%;
    background-color: #000;
    position: relative;
    bottom: 0;
    height: 30px;
}
.footer a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 0px 22px;
   text-decoration: none;
    line-height: 30px;
}
.footer a:hover {
    background: #ddd;
    color: black;
}
div.socials a {
    padding: 3px 6px !important;
}

/* MOBILE SETTINGS */
@media only screen and (max-width: 768px) {
    body {
        height: 100vh;
    }
    footer a {
        font-size: 30px;
    }
}