
/* Guess the Number */

.numberGuess-wrapper {
    width: 400px;
    height: 300px;
    background-color: #f8f8f8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.info-wrapper {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.button-wrapper {
    background-color: #fff;
    height: 70px;
    width: 320px;
    border-radius: 10px;
    display: flex;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    justify-content: space-around;
    align-items: center;
}

input[type="number"] {
    width: 100px;
    height: 33px;
    border: 2px solid black;
    border-radius: 10px;
    text-align: center;
    outline: none;
}

.hint {
    height: 70px;
    width: 320px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
