body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Center the content and make it responsive */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Limit max width for readability on larger screens */
}

/* Style the image to be responsive */
#main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    /*max-width: 300px; /* Max size for the image */
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* Style for the status message */
#status-message {
    font-size: 30pt;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Style for the input field */
#number-input {
    width: 50%;
    padding: 10px;
    font-size: 30pt;
    text-align: center;
    margin-bottom: 20px;
    background-color: #222222;
    border: 2px solid #555555;
    color: #ffffff;
    border-radius: 10px;
    box-sizing: border-box; /* Include padding in width */
}

/* CSS to remove the spinner buttons from number input fields */
/* For WebKit browsers (Chrome, Safari, etc.) */
#number-input::-webkit-outer-spin-button,
#number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
#number-input[type=number] {
    -moz-appearance: textfield;
}

/* Style for the button */
#submit-button {
    width: 50%;
    padding: 10px;
    font-size: 30pt;
    font-weight: 700;
    background-color: #555555;
    color: #000000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit-button:hover {
    background-color: #777777;
}
