body {
    font-family: sans-serif;
    margin: 0;
    height: 100vh;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    font-size: 16px;
    line-height: 1.4;
    background-color: white;
    color: black;
}

a {
    outline: none;
    text-decoration: none;
}

a:link, a:visited, a:focus, a:hover, a:active {
    color: #2065DF;
}

a.header {
    color: black;
}

#header {
    margin-top: 15px;
    min-height: 50px;
    height: 50px;
}

#footer {
    min-height: 50px;
    height: 50px;
    margin-top: auto;
    padding-bottom: 10px;
}

h1 {
    margin: 0;
}

hr {
    height: 1px;
    background-color: #202131;
    border: 1px #202131;
}

#main {
    margin: 64px 32px;
    /* margin: 4rem 2rem; */
}

.right {
    float: right;
}

.left {
    float: left;
}

@media (prefers-color-scheme: dark) {
    body {
        background: rgb(39, 43, 46);
        color: white;
    }
    a:link, a:visited, a:focus, a:hover, a:active {
        color: #6495ED;
    }
    hr {
        height: 1px;
        background-color: #bbbbc0;
        border: 1px #bbbbc0;
    }
    a.header {
        color: white;
    }
}