footer {
    color: #121212;
    background-color: #FFF;
    padding: 50px 0;
}

#layout {
    display: flex;
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
}

#main-content {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    gap: 2em;
    justify-content: space-between;
    padding: 1em 0;
}

section.side-navigation {
    font-weight: 600;
    background-color: #f7f7f7;
    min-width: 200px;
    width: 30%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.side-navigation ul {
    padding: 0 1em;
    list-style-type: none;
}

section.side-navigation a {
    text-decoration: none;
    color: #7e7e7e;
}

section.side-navigation a:hover {
    color: #000;
}

#main-content section.content {
    padding: 0 1em;
    scroll-margin-top: 100px;

}

@media screen and (max-width: 1000px) {
    #layout {
        flex-direction: column;
    }
}