body {
    font-family: math;
    background-image: url(./img/desert-5112222_1920.png);
    background-size: cover; /* Ensures the image covers the entire background */
    background-attachment: fixed;
    position: relative;
    margin:0;
    padding-left:10px;
    padding-top:10px;
    padding-bottom:10px;
    padding-right:10px;
}

/* Semi-transparent overlay to make the background image appear more transparent */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control transparency */
    z-index: -1; /* Ensures the overlay stays behind all other content */
}

.backDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.backButton {
    font-size: 20px;
    padding: 10px;
    height: 25px;
    border-radius: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    background-color: orange;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.backButton:hover {
    transform: scale(1.1);
}
