
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    background-image: url("./img/cover2.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: "Russo One", sans-serif;
}

#container {
    width: 100%;
    height: 100%;
    display: table;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
}

.row {
    width: 100%;
    height: 100%;
    display: table-row;
}

.col {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 140px;
    padding: 0px;
    margin: 0px auto;
    background-repeat: no-repeat;
    background-image: url('./img/logo-large.png');
    background-size: 100% auto;
}

.inner-container {
    width: 100%;
    max-width: 800px;
    padding: 10px;
    margin: 0px auto;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid #1d1d1d;
    color: #000;
    font-weight: bold;
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
}

.title {
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Russo One", sans-serif;
}

.content ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.content li {
    display: inline-block;
    padding: 10px;
    flex-grow: 1;
    text-align: left;
}

.content h3 {
    margin-bottom: 5px;
    font-family: "Russo One", sans-serif;
}

.content a,
.content a:active,
.content a:visited {
    color: #4D4D4D; //#4D4D4D;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    color: #F3EF16;
}


@media screen and (max-width: 470px) {
    .title {
        margin-bottom: 20px;
    }

    .content ul {
        display: block;
    }

    .content li {
        display: block;
    }

    .content h3 {
        margin-top: 0px;
    }
}

@media screen and (max-width: 410px) {
    #privacy {
        font-size: 11px;
    }
}