* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 100%;
    max-width: 1600px;
}
body {
    max-width: 1000px;
    margin: 0 auto;
}

#wrapper {
    margin: 30px;
    display: grid;
    grid-template-areas: 1fr;
    grid-template-areas: 
        "header"
        "nav"
        "narrative"
        "navButtons"
        "photo"
        "footer";
}
header {
    grid-area: header;
    max-width: 100%;
    text-align: center;
    background-color: lightskyblue;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10%;
    box-shadow: 0 5px 10px rgba(104,104,104,0.8);
}

nav {
    grid-area: nav;
}

#narrative {
    grid-area: narrative;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    background-color: lightskyblue;
    color: black;
    padding: 20px;
    border-radius: 10%;
    box-shadow: 0 5px 10px rgba(104,104,104,0.8);

    
}
#narrative p {
    color: white;
    font-size: 1.2rem;
}
.photo {
    grid-area: photo;
}
footer {
    grid-area: footer;
}
footer h5 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
    background-color: lightskyblue;

}