* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(81, 119, 201);
    text-align: center;
}

.container {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.GAME {
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}

.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    font-size: 8vmin;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.2s;
}

.box:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.2);
}

.box:disabled {
    cursor: not-allowed;
}

#reset-btn,
#new-btn {
    height: 9vmin;
    width: 40vmin;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    font-size: 7vmin;
    background-color: #333;
    color: whitesmoke;
    cursor: pointer;
    transition: 0.2s;
}

#reset-btn:hover,
#new-btn:hover {
    background-color: #555;
}

h1 {
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#msg {
    height: 5vmin;
    color: rgb(209, 243, 19);
    font-size: 6vmin;
}

.msg-container {
    height: 80vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hide {
    display: none;
}