:root {
    --body:#d1e4fa;
    --content:rgba(255, 255, 255, 0.7);
    
    --color1:#115cb0;
    --color2:#346aa8;
    --color3:#475a8e;
    --color4:#285181;
    --color5:#304f73;
}

@media (prefers-color-scheme:dark) {
    :root {
    }
}

body {
    background-color: var(--body);
    font: 1rem verdana;
    text-align: center;
}

.essay-container {
    max-width: 60%;
    background-color: var(--content);
    border: 3px solid hsla(214, 62%, 78%, 0.8);
    border-radius: 30px;
    padding: 1% 3% 30px;
    margin: 100px auto;
}

@media screen and (max-width:1000px) {
    .essay-container {
        max-width: 100%;
    }
}

h1 {
    font-size: 4em;
    color: var(--color1);
}

.subtitle {
    font-size: 1.8em;
    color:var(--color4);
    font-style:italic;
    font-weight:bold;
}

.warning {
    font-size: 2em;
    color:var(--color1);
    font-weight:bold;
    text-decoration:underline;
}

.blurb {
    font-size: 1em;
    color: var(--color5);
}

.desc {
    font-size: 1em;
    color:var(--color4);
    padding:10px;
}

.desc summary {
    cursor:pointer;
}

img {
    width: 100%;
    height: auto;
}

a:link {
    color: var(--color3);
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    color: var(--color3);
    background-color: transparent;
    text-decoration: underline;
}

a:hover, a:active, a:focus {
    color: var(--color1);
    background-color: transparent;
    text-decoration: underline;
}

hr {
    border: 2px solid var(--color2);
    margin:30px 0;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #5b90cd;
    border-radius: 30px;
    border-color: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #304f73;
    cursor: pointer;
}