body {
    display: flex;
    flex-direction: row;
    gap: 4em;
    align-items: start;

    width: 100%;
    height: 100svh;
    padding: 2em;
	
    font-family: 'Lora', serif;
    font-size: larger;
}


main {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 4em;
}

nav {
    display: flex;
    flex-direction: column;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #101010;
        color: white;
    }
}
 
h1 {
    font-weight: 700;
    font-size: large;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

.link-active {
    text-decoration: underline;
}

.pronouns {
    font-style: italic;
}

.track-list {
    margin-top: 1em;
}

.photo-grid {
    margin-top: 1em;

    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.photo {
    width: 240px;
}

@media (max-width: 570px) {
    nav {
        flex-direction: row;
        gap: 1em;
    }

    .photo {
        width: 100%;
    }
}

@media (max-width: 700px) {
    nav {
        flex-direction: row;
        gap: 1em;
    }

    body {
        flex-direction: column;
        gap: 2em;
    }
}
