* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poiret One", sans-serif;
    font-size: 20px;
    background: #202020;

    font-size: 20px;
    line-height: 26px;
    color: #E7E7E7;
       
}
/* Queens of the Stone AgeÂ (commonly abbreviated asÂ QOTSAÂ orÂ QotSA) is an AmericanÂ rockÂ band formed inÂ SeattleÂ in 1996. The band was founded by vocalist and guitaristÂ Josh HommeÂ shortly before he returned to his nativeÂ Palm Desert, California. Homme has been the only constant member throughout multiple line-up changes; since 2013, the line-up has consisted of Homme,Â Troy Van LeeuwenÂ (guitar,Â lap steel, keyboards, percussion, backing vocals),Â Michael ShumanÂ (bass, keyboards, backing vocals),Â Dean FertitaÂ (keyboards, guitar, percussion, backing vocals), andÂ Jon TheodoreÂ (drums, percussion). */

main, section, aside, footer {
    padding: 20px;
}





nav {
    background-color: antiquewhite;
    text-align: center;
    position: fixed;
    width: 100%;
    padding: 7px;

    font-family: 'DM Serif Display';
    font-size: 24px;    
    
}
nav ul li {
    display: inline;
    margin-right: 20px;
}
nav ul li a {
    color: #5531B5;
}

#banner {
    background-image: url("../img/Group\ 4.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
}

header {
    position: fixed;
    z-index: 1;
}

/* header, */
 main, .grid, #banner, footer {
    max-width: 1600px;

    margin: 0 auto;
    position: relative;

}

/* gallery */
.grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* grid-template-columns: repeat(3, 1fr); */

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    place-items: center;
}

.grid-item {
    /* background-color: aqua; */
    text-align: center;
    padding: 5px;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}


h1, nav {
    font-family: "DM Serif Text", serif;
}
h1 {
    margin-bottom: 20px;
}


#about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
@media screen and (max-width:1024px) {
    #about {
        grid-template-columns: 1fr;
    }
    #banner{
        height: 60vh;
    }
}
