:root {
    --bg_color: #1B2331;

}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;

    background-color: var(--bg_color);

    /* font-family: 'Brush Script MT', cursive; */
    font-family: 'Courier New', monospace;
}

footer {
    min-height: var(--bar_heights);

    background-color: var(--dark);
    max-width: 100vw;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

footer>a {
    height: fit-content;

    text-decoration: solid;
    color: var(--light);
}

.image {
    width: 50vw;
    height: 50vh;

    min-width: 25rem;
    min-height: 25rem;

    display: block;
    display: flex;


    justify-content: center;
}

.caption {
    width: 50vw;
    height: 50vh;

    display: block;
    display: flex;

    align-items: start;
    justify-content: center;

    color: white;
}