html {
    height: 100%;
    background-color: white;
}

/* @media (max-width: 1000px) {
    html {
        background-color: red;
    }
} */

body {
    display: grid;
    margin: 0;
    height: 100%;
    width: 100%;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
}

#header-bar {
    grid-column: 1 / 9;
    grid-row: 1;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;

    font-family: "Playfair Display", serif;
    font-size: large;
}

#composer-name {
    grid-column: 1 / 9;
    grid-row: 2 / 6;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding-left: 100px;
    
    font-family: "Playfair Display", serif;
}

#composer-name h1 {
    margin-bottom: 0;
}

#composer-name p {
    margin-top: 0;
}

#ds-gif {
    grid-column: 1 / 9;
    grid-row: 2 / 6;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#photo-credit {
    grid-column: 1 / 9;
    grid-row: 2 / 6;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;

    color: white;
    z-index: 2;
}

#footer-bar {
    position: fixed;
    bottom: 0;
    height: 16.7%;
    width: 100%;
    z-index: 1;
}

.nav-list {
    display: flex;
    justify-content: end;
    align-items: center;
    
    padding-right: 100px;
}

.nav-list a {
    text-decoration: none;
    color: inherit;
}

.nav-list a:visited {
    color: inherit;
}

.nav-list li {
    list-style: none;
    padding-left: 40px;
}

img.animated-gif {
    height: 100%;
}

/* I need a div that has the same dimensions as the image ... how? */

.current-nav {
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.credit {
    padding: 0;
    margin: 0;
}

.score {
    width: 90%;
    height: 426px;
}
