*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    font-family:'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    background: linear-gradient(0.05turn, rgba(0, 0, 0, 0.317),rgba(255, 166, 0, 0.517),rgba(0, 0, 0, 0.589));
}

nav{
    background: black;
    height: 80px;
    width: 100%;
}

label.logo img{
    height: 80px;
    padding:2px 12px;
}

label.logo a:hover{
    background: none;
}

label.nav-title a{
    color: bisque;
    font-size: 22px;
    display: inline-flex;
    position: absolute;
    line-height: 80px;
    padding: 0px 0px 0px 10px;
}

label.nav-title a:hover{
    background: none;
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active,a:hover{
    background: goldenrod;
    transition: .5s;
}

.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

.checkbtn2{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

@media (max-width: 858px){
    .checkbtn{
        display: block;
    }

    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c2e50;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a{
        font-size: 20px;
    }

    a:hover,a.active{
        background: none;
        color: goldenrod;
    }

    #check:checked ~ ul{
        left: 0;
    }

    #check:checked ~ .checkbtn{
        display: none;
    }

    #check:checked ~ .checkbtn2{
        display: block;
    }
}

h1{
    text-align: center;
    font-size: 40px;
    padding: 50px 0px 20px 0px;
}

h2{
    text-align: center;
    font-size: 25px;
    padding: 10px 0px;
}

h3{
    text-align: center;
    font-size: 18px;
    margin: 5px;
    padding-top: 10px;
    color: #0b0b0b;
}

.container{
    margin: 20px;
    background-color: rgb(240, 240, 240);
}

footer{
    height: 40px;
    width: 100%;
    background-color: black;
}

#foot-title{
    font-size: larger;
    color: bisque;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 40px;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.content{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
    transition: .4s;
    background: #f2f2f2;
}

.content img{
    height: 300px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.desc{
    text-align: center;
    color: #93999c;
    padding: 2px 8px 5px 8px;
}

.desc2{
    font-size: 18px;
    text-align: center;
    padding: 15px 10px 10px 15px;
}

.desc2 a{
    color: rgb(165, 125, 26);
}

.desc2 a:hover{
    background: none;
}

.footer a{
    color: bisque;
}

.footer a:hover{
    background: none;
}

h6{
    font-size: 26px;
    text-align: center;
    color: #222f3e;
    margin: 0;
}

button{
    font-family:'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 24px;
    color:#fff;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.buy-1{
    background: #ff9900;
}

@media(max-width:1224px){
    .content{
        width:45%;
    }

    label.nav-title{
        display: none;
    }
}

@media(max-width:858px){
    .content{
        width:100%;
    }

    label.nav-title{
        display: none;
    }
}