* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 15px; 
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 44px;   
    background-color: rgb(255, 255, 255);
}

#book-2{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

header {
    width: 100%;
    background-color:  rgb(255, 65, 106);
    position: fixed;
    z-index: 999;
    justify-content: end;
}   

nav  {
    display: grid;  
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}

header nav a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-decoration: none;
    color:hwb(0 0% 100%);
    font-size: 0.75rem;
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: inline-block;
    background-color: rgb(255, 255, 255);
    padding: 0.05rem 1rem;
    margin-top: 0.50rem;
}

header nav a:hover {
    scale: 1.1;
}
a:link {
    transition: scale 0.3s;
}

#questions {
color: rgb(21, 66, 105);
margin-top: 65px;
margin-left: 1rem;
margin-right:1rem;
margin-bottom: 1rem;
background-color: rgb(194, 226, 255);
box-shadow:  2px 4px 10px rgb(203, 181, 181);
padding: 0.5rem;
}

#planning {
    color: rgb(87, 110, 49);
margin-left: 1rem;
margin-right:1rem;
margin-bottom: 1rem;
background-color: rgb(211, 255, 145);
box-shadow:  2px 4px 10px rgb(203, 181, 181);
padding: 0.5rem;
}

#logo {
    height: 5vh;
    margin-right: 0rem;
}

#intro {
    height: 40vh;
}

img {
    height: 30vh;
}
