html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Cambria', serif;
    background-color: rgb(6, 75, 59);
    background: 
        radial-gradient(circle at left, rgba(5, 69, 54, 0.7), transparent),
        radial-gradient(farthest-side at bottom right, rgba(166, 19, 19, 0.5), transparent),
        radial-gradient(farthest-corner at top right, rgba(29, 148, 213, 0.5), transparent);
    color: white;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#form > input {
    display: block;
    font-size: 16px;
    height: 32px;
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
    border-radius: 8px;
    border: 0px solid;
}

button {
    margin-top: 20px;
    background-color: rgb(64, 154, 232);
    color: white;
    font-size: 16px;
    border: 0px solid;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 20px;
}

#draw {
    display: none;
}

#result {
    margin-top: 20px;
    font-size: 24px;
}

#next-btn {
    display: none;
}

#finish {
    display: none;
}