html {
    font: 16px "Open Sans Condensed", "Roboto Condensed", Verdana, sans-serif;
    padding-left: 5%;
    padding-right: 5%;
}

.body_text {
    text-align: center;
}

h1 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
}

.container {
    display: flex;
    align-items: first baseline;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
}

.flex-1 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1;
    flex: 45%;
    margin-top: 75px;
}

.flex-2 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1;
    flex: 45%;
    margin-top: 50px;
}

@media (max-width: 499px) {

    .flex-1,
    .flex-2 {
        flex: 100%;
        flex-direction: column;
    }
}

@media (min-width: 500px) {

    .flex-2,
    .flex-1 {
        flex-direction: row;
    }
}

body {
    color: #222;
    background: #fff;
    font: 100% system-ui;
}

a {
    color: #0033cc;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #eee;
        background: #121212;
    }

    body a {
        color: #809fff;
    }
}