* {
    box-sizing: border-box;
    font-family: 'verdana', 'sans-serif';
}

html {
    min-height: 100%;
}

body {
    background-image: linear-gradient(to bottom right, #03A9F4, #0080001f);
}

h1 {
    text-align: center;
    color: whitesmoke;
    margin: 40px auto;
}

.inactive {
    display: none;
}

/* #number-remain {
    width: 350px;
    height: 50px;
}

#numbers-guessed {
    width: 350px;
    height: 50px;
} */

#result {
    width: 220px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#result img {
    margin: 7px auto;
}

#guess-form,
#play-again {
    padding: 5px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#guess-form {
    margin: 100px auto 40px auto;
}

#play-again {
    margin: 10px auto;
}

#guess-form input {
    height: 30px;
    width: 200px;
    font-size: 1.2rem;
    text-align: center;
}

button {
    height: 32px;
    width: 200px;
    background-color: rgba(255, 216, 111);
    border: 2px solid black;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

#guess-form button {
    margin-top: 3px;
    background-color: rgba(255, 216, 111);
}


#play-again button {
    background-color: rgb(235 104 94 / 87%);
    margin-bottom: 20px;
}