@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #f0f0f0;
    height: 100vh;
    width: 100vw;
}

nav a{
    /* font-size: 1.5rem; */
    /* font-weight: 500; */
    color: var(--text-color);
    text-decoration: none;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #293b8e;
    color: white;
 
}
nav a{
    /* font-size: 1.5rem; */
    /* font-weight: 500; */
    color: var(--text-color);
    text-decoration: none;
}






.container {
    background-color:#f0f0f0;
    display: grid;
    grid-template-columns: 120vh 100vh;
    gap: 0%;
    /* Add these properties to center the container */
    place-items: center;
    height: 100vh;
    width: 100%;
}

.description{
    background-color:#ebedf1;
    height: 700px;
    width: 400px;
}

.book {
    
    display: grid;
    grid-template-columns: 20vw 5vw 20vw;
    gap: 5vw;
    place-self: center;
    margin: auto;
}

.book-cover{
    background-color:white;
    height: 700px;
    width: 480px;
    
}

.book-spine{
    background-color: rgb(234, 235, 236);
    height: 700px;
    width: 150px;
}   

.book-back{
    background-color: orange;
    height: 700px;
    width: 480px;
    background: url("books/front book cover egypt.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.styled-button {
    /* Basic styling */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    
    /* Colors */
    
    color: blue;
    
    /* Hover effect */
    transition: background-color 0.3s ease;
  }
  
  .styled-button:hover {
    background-color: #45a049;


}
nav a:hover{
    color: var(--hover-color);
        background-color: #eab557;
        color: black;
      
}
