* {
    background: var(--background);
    margin: 0px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    margin-top: 120px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content * {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
}

p {
    color: var(--text);
    font-size: 16px;
    line-height: 20px;
}

a {
    color: var(--hero-blue);
    text-decoration: none;
    -o-transition: .2s;
    -ms-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}

a:hover {
    color: var(--hero-blue-selected);
}

.detailP {
    color: #A9A9AE;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 18px;
}

h1 {
    font-size: 35px;
    color: var(--hero-blue);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

h2 {
    font-size: 21px;
    color: var(--hero-blue);
    margin-top: 20px;
    margin-bottom: 20px;
}

h3, h4 {
    font-size: 19px;
    color: var(--hero-blue);
    margin-top: 15px;
    margin-bottom: 15px;
}

.content ul, ol {
    font-size: 16px;
    color: var(--text);
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.content li {
    margin-top: 5px;
    margin-bottom: 5px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(169, 169, 174, 0.15);
    border-radius: 0.5px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 80px;
}

.individualLink {
    color: rgb(57, 132, 247);
    font-size: 16px;
    text-decoration: none;
}

.individualLink:hover {
    color: rgb(57, 132, 247);
    font-size: 16px;
    text-decoration: none;
}

#footer {
    text-align: center;
    margin-top: 50px;
}

#footer ul {
    display: inline-block;
    margin: 15px;
    padding: 0;
    zoom: 1;
    *display: inline;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 14px;
    list-style-type: none;
}

#footer li {
    float: left;
    padding: 2px 2px;
}

#footer li a {
    display: block;
    color: var(--detail-text);
    padding: 5px 5px;
    text-decoration: none;
    -o-transition: .2s;
    -ms-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}

#footer li a:hover {
    color: var(--hero-blue);
}

#footer {
	padding-bottom: env(safe-area-inset-bottom);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

:root {
    color-scheme: light dark;
    --background: white;
    --text: black;
    --detail-text: rgb(124, 135, 151);
    --hero-blue: rgb(30, 139, 234);
    --hero-blue-selected: rgb(0, 185, 255);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: rgb(27, 28, 30);
        --text: white;
        --detail-text: rgb(235, 235, 245, 0.6);
    }
}

@media only screen and (max-width: 500px) {
    .content {
        margin-top: 90px;
    }
}

@supports (padding-top: env(safe-area-inset-top)) {
    html, body {
        --safe-area-inset-top: env(safe-area-inset-top);
        height: calc(100% + var(--safe-area-inset-top));
    }
}