*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    height: 100vh;
    background: linear-gradient(to top, #ffd900, #f73201, #ff00dd, #350483);
}
html{
    font-size: 16px;
}
.wrapper{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;    
}
.container{
    width: 70vmin;
    height: 70vmin;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
}
.button-option{
    background: #fff;
    height: 22vmin;
    width: 22vmin;
    border: none;
    border-radius: 8px;
    font-size: 12vmin;
    color: #68078f;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
#restart{
    margin-top: 1.5em;
    font-size: 1.6em;
    padding: 0.8em 0.4em;
    border-radius: 0.2em;
    background-color: #0a0027;
    color: #fff;
    border: none;
    position: relative;
    margin: 1.5em auto 0 auto ;
    display: block;
}
.popup{
    background:linear-gradient(to top, #ffd900, #f73201, #ff00dd, #3e008f);
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    font-size: 12vmin;
    color: #000000;
}
#new-game{
    font-size: 0.6em;
    padding: 0.5em 1em;
    background-color: #0a0027;
    color: #fff;
    border-radius: 0.2em;
    border: none;
}
#message{
    color: #000000;
    text-align: center;
    font-size: 1em;
}
.popup.hide{
    display: none;
}