* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #acbace;
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    
}
a:hover {
    color: #F7AB7E;
}

header {
    background: #77675E;
    position: fixed;
    width: 100%;
    top: 0px;
    height: 50px;
    font-family: prata;
    
}
.smallhead {
     text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: prata;

}
#banner {
    background-color: #9fc0db;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 90vh;
    
}
#booklayer img {
    margin-top: 130px;
    width: 295px;
    border-radius: 2px;
    transition: all 0.5s ease ;

}
#booklayer img:hover{
    transform: scale(1.1);
    z-index: 2;


}
#booklayer img::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: white;


}

nav {
    text-align: center;
    padding: 5px;
    font-size: 32px;
    font-family: Prata;
}
nav ul li {
    display: inline;
    margin-right: 10px;
}


ul
main {
    margin-top: 30px;
}
main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 10px;
}
footer {
    background: #6c6c6c;
    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;

}