html {
    font-size: 18px; /* Increase the base font size */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.center {
    margin: auto;
}

.container {
    width: 100%;
    padding: 1em; /* Add padding for better spacing */
}

/* CSS for the button */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 75%;
    margin: auto;
    background-image: linear-gradient(92.88deg, #45b554 9.16%, #43cc5a 43.89%, #44d73f 64.72%);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    font-family: "Inter UI", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.2rem; /* Increase the font size */
    font-weight: 500;
    height: 4rem;
    padding: 0 2rem; /* Increase padding */
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button:hover {
    box-shadow: rgba(46, 148, 36, 0.5) 0 1px 30px;
    transition-duration: .1s;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
    .button {
        padding: 0 3rem; /* Increase padding for larger screens */
    }
}

@media (max-width: 767px) {
    .button {
        width: 100%;
    }

    .container {
        width: 100%;
    }

    #quiz {
        padding: 2em; /* Increase padding for better spacing */
    }
}