* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('./images/hacker.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    z-index: -1; /* Place the background behind the buttons */
}

.button {
    position: absolute;
    background-color: grey;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 20px; /* Slightly inward from each corner */
}

.button a {
    color: white;
    text-decoration: none;
}

/* Positioning each button on desktop */
.top-left {
    top: 20px;
    left: 20px;
}

.top-right {
    top: 20px;
    right: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Mobile adjustments: stack buttons in the center */
@media (max-width: 600px) {
    .button {
        position: static;
        margin: 10px auto; /* Center in the list */
        display: block;
        font-size: 1.2rem;
    }

    /* Use flexbox to center the buttons vertically and horizontally */
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}
