/* FONT */
@font-face {
    font-family:DonJose;
    src: url(../DonJose_Black.otf);
}

body {
    margin: 0;
    padding: 0;
    /*Background IMG full screen*/
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    /*font family*/
    font-family: 'Roboto', sans-serif;
}

.container{
    position: relative;
    display: inline-block;
    width: 50%;
    /*background-color: rgba(0, 0, 0, 0.9);*/
    padding: 25px;
    margin-top: 13%;
    margin-left:auto;
    margin-right:auto;
    -webkit-border-top-left-radius: 25px;
    -webkit-border-top-right-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-topright: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
#disclaimer {
    margin-top: 20px;
}

footer {
    display: inline-block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px;
    /*FOOTER BACKGROUND img repeat-x*/
    background-repeat: repeat-x;
    background-size: 100%;
}

/* Logos */
#menu-logo>img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.category>a>img {
    display: block;
    width: 80%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
}

#menu-footer>img {
    display: block;
    width: 80%;
    height: auto;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
}

#disclaimer>p {
    font-size: 10px;
    color:rgb(155, 155, 155);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Header */

header {
    position: absolute;
    display: block;
    width: 100%;
    height: 50px;
    background:black;
    padding: 10px;
    font-family: DonJose;
    font-size: 1em;
}

header>a {
    color: black;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        width: 75%;
    }
}

