* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: green;
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    color: aquamarine;
}
header {
    background: lightcyan;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1;
    
    background: #FCE4C0;
    font-family: "Junge", cursive;
}
nav ul li a {
    color: #000;
    font-size: 28px;
    text-decoration: none;
}
/* header, */
 main, footer, #banner, .grid {
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}
#banner {
    background-image: url("../img/pexels-lusaya-401107.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 90vh;
}
nav {
    text-align: center;
    padding: 5px;
}
nav ul li {
    display: inline;
    margin-right: 10px;
}
h1 {
    font-family: "Junge", cursive;
    font-size: 48px;
    color: #000000;
    /* Lightbulbs */
    
        
    
        font-family: 'Junge';
        font-style: normal;
        font-weight: 400;
        font-size: 48px;
        line-height: 25px;
        /* identical to box height, or 52% */
    
        color: #000000;
        margin-bottom: 23px;
}
main {
    margin-top: 30px;
}
main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 10px;
}
footer {
    background: lightskyblue;
    padding: 5px;
    min-height: 100px;
    text-align: center;
}


/* Gallery */
.grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* grid-template-columns: repeat(4, 1fr); */

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    place-items: center;
}
.grid-item {
    background-color: white;
    padding: 10px;
    text-align: center;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.483);
}
.grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;

}