@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:wght@200&family=Noto+Sans&family=Oswald:wght@200&family=Raleway&family=Roboto:wght@100&family=Shippori+Antique&display=swap');
:root{
    --nav-footer-bg-color: #a51a20;
    --color: black;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    background: #fff;
}

/* styling navbar */

nav{
    background-color: var(--nav-footer-bg-color);
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 68px;
    box-shadow: black 0 0 10px;
}
.nav-toggle{
    display: none;
}
.toggle-label{
    display: none;
}

.toggle-sibling{
    display: flex;
}

.nav-list{
    display: flex;
}

.nav-list li{
    list-style-type: none;
    margin: 20px;
}

.nav-list li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    position: relative;
}

.nav-list li a::before{
    content: '';
    display: block;
    height: 2px;
    background-color: white;
    position: absolute;
    width: 0%;
    top: -21px;
    transition: all ease-out 150ms;
}

.nav-list li a:hover{
    color: rgb(144, 183, 199);
}

.nav-list li a:hover::before{
    width: 100%;
}

.searchbar{
    display: flex;
    align-content: center;
    margin: 18px;
}

.search-here{
    height: 25px;
    width: 30vw;
    font-family: 'Shippori Antique', sans-serif;
}

.btn{
    width: 80px;
    margin-right: 3vw;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

/* styling header */

header{
    background-image: url('https://unsplash.it/1300/1300');
    object-fit: cover;
    box-shadow: black 0 0 10px;
    padding-top: 74px;
}

h1{
    font-family: 'Oswald', sans-serif;
    font-size: 7.5vw;
    color: white;
    text-shadow: rgb(53, 51, 51) 0 0 0.2em;
}

h1 div a{
    font-family: 'Oswald', sans-serif;
    font-size: 15vw;
    text-shadow: white 0 0 5px;
}

/* styling main */

.stuff{
    margin: 2.8vw;
}

.class{
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    column-gap: 2px;
    justify-content: center;
    overflow: hidden;
    box-shadow: black 0 0 10px;
}

.box{
    border:1px solid rgb(51, 44, 44);
    height: 300px;
    width: 203px;
    padding: 2px;
    box-shadow: black 0 0 10px;
}

.box img{
    border:1px solid rgb(51, 44, 44);
}

.item-name{
    color: var(--color);
    font-size: larger;
}

.item-name:hover{
    color: blue;
}

/* styling footer */

footer{
    background-color: var(--nav-footer-bg-color);
    color: white;
    padding: 1em 0;
}