/* CSS TOPNAV - MENU RESPONSIVEEEEE*/
.topnav {
    overflow: hidden;
    background-color: #630000;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    text-align: center;
}

.topnav a {
    display:inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    font-size: 13px;
    transition: 250ms;
}

.topnav a:hover {
    background-color: #bd0000;
    color: white;
}

.topnav .icon {
    padding-right: 10px;
    display: none;
}

@media screen and (max-width: 800px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .topnav.responsive {position: absolute;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav{
        padding-left: 0;
        text-align: left;
    }
}

header{
    margin-top: 4%;
    text-align: center;
    width: 100%;
}

#header-img{
        width: 1000px;
}

@media screen and (max-width: 800px) {
    #header-img{
        margin-top: 50px;
        content: url(../img/logo.png);
        width: 100%;
    }

    #shop-mobile{
        content: url(../img/bgShopOnline.png);
        width: 100%;
    }
}