@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    background-color: #161616;
    color: white;
}

#container {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; /* Ensure that the background is behind the other elements */
}

#logo {
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.button {
    background-color: #31313175;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 5px;
}

#copyright {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    #logo {
        font-size: 16px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 80%;
    }

    #copyright {
        position: static;
        margin-top: 20px;
    }
}

#logo {
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    #logo {
        display: none; /* Hide on mobile devices */
    }
}

.button {
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .button-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about-text {
        top: auto;
        bottom: 10%; /* Adjust as needed */
        transform: none;
    }
}

@media screen and (max-width: 600px) {
    #about-text {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        text-align: center; /* Center the text on the mobile device */
    }
}

    /* Other style rules remain unchanged */
    a {
        color: white; /* Change the color as needed */
    }

    body {
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by most modern browsers */
    }