body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: white;
}

h1, h2, h3 {
    font-weight: lighter;
}

hr {
    opacity: 0.75;
}

.menu-btn {
    border: none;   
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 1rem;

    transition-duration: 0.2s;
    overflow: hidden;
}

.menu-btn:hover {
    font-size: 1.1rem;
}

.span-2 {
    grid-row: span 2;
}

.span-3 {
    grid-row: span 2;
}

.span-4 {
    grid-row: span 2;
}

.home-contents {
    padding-left: 12.5%;
}

.poem {
    width: 100%;
    height: max-content;

    text-align: center;

    transition-duration: 0.2s;
}

.poem:hover {
    font-size: 1.3em;
}

.poem-contents {
    padding-left: 14%;
    padding-right: 1.5%;
}


#contents {
    width: 87.5%;

    background-color: white;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 4rem; 
}

#container {
    width: 100%;
    height: 100%;

    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#menu {
    height: 100%;
    width: 12.5%;
    text-align: center;

    background-color: black;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    position: fixed;
}