body {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
}

#container {
    text-align: center;
    width: 500px; /* Set the width to match the logo_web.png width */
    margin: auto; /* Center the container */

    /* Media Query for mobile devices */
    @media only screen and (max-width: 600px) {
        width: 90%; /* Adjust the width for smaller screens */
    }
}

img {
    max-width: 100%;
    max-height: auto; /* Allow the image to scale proportionally */
    margin-bottom: 20px; /* Adjust the margin as needed */
}

.plain-text {
    font-size: 16px;
    margin: 8px;
    color: white;
    text-align: center;
}

button {
    width: 150px; /* Make the button span the full width */
    height: auto; /* Allow the button to scale proportionally */
    padding: 10px 30px;
    font-size: 18px;
    background: url('button_web.png') no-repeat center center;
    background-size: contain;
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0px;
    cursor: pointer;
}
