*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Raleway",sans-serif;
}

body{
    height: 100vh;
    background: linear-gradient(50deg, #825858, #8980c9);
}
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: #a2babf;
    height: 22vmin;
    width: 22vmin;
    border: none;
    border-radius: 8px;
    font-size: 15vmin;
    font-weight: 520;
    color: #3b3154;
    box-shadow: rgba(13, 38, 76, 0.19) 0px 9px 20px;
}

#restart{
    position: relative;
    margin: 20px auto 0 auto;
    display: block;
    font-size: 1.3em;
    padding: 10px 15%;
    border: none;
    border-radius: 8px;
    background-color: #342e45;
    color: #a5b5bc;
}

.fa-solid{
    margin-left: 10px;
}

.popup{
    position:absolute;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(120deg, #825858, #8980c9);
    height: 100%;
    width: 100%;
    gap: 1em;
    font-size: 12vmin;
}

#new-game{
    font-size: 0.6em;
    padding: 0.5em 1em;
    background-color: #342e45;
    color: #a5b5bc;
    border: none;
    border-radius: 0.2em;
}

#message{
    color: #ffffff;
    text-align: center;
    font-size: 1em;
}

.popup.hide{
    display: none;
}


@media only screen and (min-width: 460px) {
    #restart{
        padding: 20px 20%;
        font-size: 2.3em;
    }
  }
  