body {
    background-color: rgb(49, 25, 72);
    margin: 0;
    padding: 0;
}

#myCanvas {
    display: none;
}

.funnything {
    display: none;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(49, 25, 72);
    z-index: 999;
    flex-direction: column;
}

.textcheck {
    color: white;
    font-size: 1.5em;
    margin-top: 20px;
    align-self: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    animation: pulse 1s infinite ease-in-out;
    transition: color 0.4s ease;
}

.textcheck.success {
    color: #4CAF50;
    animation: none;
}

.textcheck.error {
    color: #e53e3e;
    animation: none;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.infotext {
    color: #bbb;
    font-size: 0.9em;
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
    min-height: 1.2em;
    transition: opacity 0.3s ease;
}

.agree {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.agree:hover {
    background-color: #45a049;
}

.agree:active {
    transform: scale(0.90);
}

.agree:disabled {
    background-color: #2c642f;
    cursor: not-allowed;
}

.agree:disabled:active {
    transform: scale(1);
}

.loader {
    display: none;
}

.done {
    margin-top: 16px;
}
