body, html {
    height: 100%;
    margin: 0;
}

body {
    /* Set the background image */
    background-image: url('beaver-of-rigs.jpeg');

    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* This is what makes the image scale with the browser size */
}

.top-right {
    position: absolute;   /* Position it relative to the browser window */
    bottom: 0;               /* Align it at the top */
    right: 0;             /* Align it to the right */
    padding: 10px;        /* Add padding (change the value as needed) */
    font-size: 15px;
    color: rgb(31, 255, 57);
    text-align: right;    /* Align the text to the right */
}

.top-left {
    position: absolute;   /* Position it relative to the browser window */
    top: 0;               /* Align it at the top */
    right: 0;             /* Align it to the left */
    padding: 10px;        /* Add padding (change the value as needed) */
    text-align: left;    /* Align the text to the left */
}