body, html {
    font-family: arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

@media (prefers-color-scheme: dark) {
    body, html {
        color: white;
        background-color: #181818;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: arial, sans-serif;
}

a:link, a:visited {
    color: #4b7bec;
    text-decoration: none;
}

a:hover {
    color: #2d98da;
    text-decoration: none;
}

hr {
    width: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#navigationBar {
    position: fixed;
    top: 0;
    clear: both;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    border-bottom: 1px solid lightgray;
}

#navigationBar a {
    display: inline-block;
    vertical-align: middle;
    padding: 14px;
    color: black;
    text-align: center;
    text-decoration: none;
}

#navigationBar a.active {
    color: #636e72;
}

@media (prefers-color-scheme: dark) {
    #navigationBar a {
        color: white;
    }

    #navigationBar a.active {
        color: darkgray;
    }
}

#container {
    min-height: 100vh;
}

#main {
    overflow: auto;
    padding-top: 70px; /* Navbar */
    padding-bottom: 100px;
}

#footer {
    background-color: #dfe6e9;
    position: relative;
    margin-top: 100px;
    height: auto;
    clear: both;
    padding: 20px 40% 20px 20px;
    font-size: small;
}

@media (prefers-color-scheme: dark) {
    #footer {
        background-color: black;
    }
}

.blur {
    background-color: rgba(255, 255, 255, 0.98);
}

@media (prefers-color-scheme: dark) {
    .blur {
        background-color: rgba(24, 24, 24, 0.98);
    }
}

@supports ((backdrop-filter: blur(25px)) or (-webkit-backdrop-filter: blur(25px))) {
    .blur {
        background: rgba(255, 255, 255, 0.6);
        box-shadow: none !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }

    @media (prefers-color-scheme: dark) {
        .blur {
            background: rgba(0, 0, 0, 0.6);
        }
    }
}

.content {
    font-size: large;
    width: 850px;
    max-width: 80%;
    margin: 0 auto 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
    .content {
        background-color: #181818;
    }
}

.content h1, h2, h3, h4, h5, h6 {
    text-align: left;
}

.imgSection {
    margin: auto auto 20px !important;
    text-align: center;
    font-size: large;
    font-weight: bolder;
}

.imgSection img {
    display: block;
    margin: 20px auto;
    width: 90%;
    border: 3px solid lightgray;
    border-radius: 10px;
    box-sizing: border-box;
}

.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
    .shadow {
        box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    }
}

.profile {
    box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
    border-radius: 100%;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .flexbox {
        flex-direction: column;
    }

    .flex-mobile-reverse {
        flex-direction: column-reverse;
    }
}