*{
    padding: 0;
    margin: 0;
}

body{
    text-align: center;
    background-color: #548687;
    /* background-image: url('SPACE\ WATTPAER.jpg'); */
    background-image: linear-gradient(rgb(185, 39, 39) , rgb(103, 29, 205));
    
}

h1{

    font-size: 2.5rem;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game{
    height: 50vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}

.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0,0,0,0.4);
    font-size: 8vmin;
    color: red;
    background-color: #151414;
    /* background-color: #dd6841; */
     text-shadow:
    0 0 20px rgb(26, 26, 246),
    0 0 40px rgb(26, 26, 246),
    0 0 80px rgb(26, 26, 246),
    0 0 100px rgb(26, 26, 246);
    
}

#reset-btn {
    padding: 1.5rem;
    margin: 60px;
    font-size: 1.25rem;
    background-color:#080806 ;
    color: #fff;
    border-radius: 1rem;
    border: none;    
}

#new-btn{
    padding: 1rem;
    font-size: 1rem;
    background-color: #191913;
    color: #fff;
    border-radius: 1rem;
    border: none;
}

#msg{
    color: silver;
    font-size: 5vmin;
}

.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hide {
    display: none;
}