.row {
    display: flex;
    align-items: center;
}
.column {
    flex: 33.33%;
}
#navigationBar {
    position: fixed;
    top: 0;
    width: 100%;
    padding-bottom: 0px;
    float: left;
}
#logo {
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    float: left;
}
#logo:hover p {
    color: var(--hero-blue);
}
#logoIcon {
    height: 40px;
    width: 40px;
}
#contents {
    flex-basis: 100%;
    color: var(--navigationBarText);
    font-size: 26px;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
    font-style: normal;
    font-weight: 800;
    text-decoration: none;
    -o-transition: .2s;
    -ms-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
    margin-left: 10px;
    margin-bottom: 8px;
}
:root {
    color-scheme: light dark;
    --text: black;
    --navigationBarText: rgb(30, 139, 234);
    --detail-text: rgb(124, 135, 151);
    --hero-blue: rgb(30, 139, 234);
}
@media (prefers-color-scheme: dark) {
    :root {
        --text: white;
        --navigationBarText: white;
        --detail-text: rgb(235, 235, 245, 0.6);
    }
}
@media only screen and (max-width: 500px) {
    #logo {
        margin-top: 19px;
        margin-bottom: 0px;
    }
    #logo a {
        font-size: 20px;
        margin-left: 0px;
    }
    #logoIcon {
        width: 30px;
        height: 30px;
    }
    hr {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 67px;
    }
    #contents {
        padding-top: 5px;
    }
    .row {
        align-items: unset;
    }
}