@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 {
   
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #293b8e;
    color: white;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
}

nav a:hover {
    color: black;
    background-color: #eab557;
    padding: 1vh 1vh;
}

.book {
    display: grid;
    place-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.book img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
