html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Lora', sans-serif;
    text-align: center;
    color: black;
    margin: 0;
    padding-top: 20px;
    background: white; /* Default background color */
    transition: background 0.5s ease;
    /*background: -webkit-linear-gradient(bottom left, #111, #222);*/
    /*background: -moz-linear-gradient(bottom left, #111, #222);*/
    /*background: linear-gradient(bottom left, #111, #222);*/
}

.container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
}

button {
    background: #ff0080;
    color: white;
    font-size: 32px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 32px;
    transition: 0.3s;
}

button:disabled {
    background: gray;
    cursor: not-allowed;
}

p {
    margin-top: 20px;
    font-size: 18px;
}

/* Disco Mode Background Effect */
.disco {
    background: linear-gradient(45deg,
    #ff0080, #ffb3cc, #ff6600, #00ff00, #00ffff,
    #ff00ff, #ff0000, #ffff00, #00ff80, #8000ff,
    #ff0080
    );
    background-size: 600% 600%;
    animation: discoBackground 3s infinite linear;
}

@keyframes discoBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid #555;
}

.error-message {
    position: fixed;  /* Stays at the top even when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff4d4d; /* Red background */
    color: white; /* White text */
    text-align: center;
    padding-top: 128px;
    font-size: 32px;
    font-weight: bold;
    z-index: 9999; /* Ensures it appears above all other content */
    display: none;
}

@keyframes bounceLogo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}

.disco-logo {
    animation: bounceLogo 1s infinite ease-in-out;
}