html,body {
    margin: 0;
    height: 100%;
    background-color: rgb(240, 240, 240);
}

a {
    color: inherit;
} 

/* .image {
    width: 50%;
    height: 100vh; 
    background-image: url(images/brompton-river.jpg);
    background-repeat: center center;
    background-position: 50%;
    background-size: cover;
    float: left;
    left: 0;
    margin-right: 2%;
    margin-bottom: 0%;
} */

.content {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(240, 240, 240);
    font-size: medium;
    color: black;
    box-sizing: border-box;
    margin: 0;
    padding: 15px;
    height: autopx;
    text-align: left;
    min-width: 300px;
    min-height: 1vw;
}

.image404 {
    width: 100vw;
    height: 95vh; 
    background-image: url(images/TRexPaul.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (prefers-color-scheme: dark) {
    html,body {
        background-color: #232323;
    }

    .content {
        background-color: #232323;
        color: #f0f0f0;
    }

}