﻿* {
    margin: 0px;
    padding: 0px;
}

html {
    color: #424b5b;
    background-image: linear-gradient(#008AD3, #001754);
}

@media (prefers-color-scheme: dark) {
    html {
        color: white;
    }
}

body {
    height: 100%;
    font-family: arial,helvetica;
    padding: 30px 15px 15px 15px;
}

#container {
    background: white;
    border-radius: 10px;
    padding: 25px 15px 15px 15px;
    min-height: 100vh;
}

@media (prefers-color-scheme: dark) {
    #container {
        background: #00457C;
    }
}

p {
    line-height: 1.5;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 5px;
    color: #00457C;
}

h3, h4 {
    color: #00457C;
    margin-bottom: 10px;
}

@media (prefers-color-scheme: dark) {
    h3, h4 {
        color: white;
    }
}

a {
    color: #00B0EB;
    text-decoration: underline;
}

ul {
    margin: 15px 15px 15px 35px;
}

li {
    margin-bottom: 5px;
    line-height: 1.5;
}

    li > b, p > b {
        color: #00457C;
    }

.minervaHyperLink {
    color: #80B458 !important;
}