*{
    margin:0;
    padding:0;
}
body{
    background-color: aquamarine;
    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;
    background-color: antiquewhite;
}
.box{
    height:18vmin;
    width:18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow:0 0 1rem rgba(0,0,0,0.1);
    font-size: 8vmin;
    color: #b0413e;
}
#reset{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
}
#renew{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
}
#msg{
    color:#ffffc7;
    font-size:5vmin;
}
.msg-container{
    height:30vmin;
}
.hide{
    display:none;
}
#name-modal {
    position: fixed;
    top: 0; left: 0;
    height: 100vh; width: 100vw;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
#name-form {
    background: antiquewhite;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
#name-form h2 {
    font-size: 1.8rem;
    color: #191913;
}
#name-form input {
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    border: 2px solid #b0413e;
    outline: none;
    width: 200px;
    text-align: center;
}
#start-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    background-color: #b0413e;
    color: #fff;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
}
.box:hover:not(:disabled) {
    background-color: #f0e6d3;
    cursor: pointer;
    transform: scale(1.05);
    transition: all 0.2s ease;
}
#reset:hover, #renew:hover, #start-btn:hover {
    opacity: 0.85;
    cursor: pointer;
    transform: scale(1.03);
    transition: all 0.2s ease;
}
