* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    height: 100vh;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(225, 233, 20, 1) 0%, rgba(0, 212, 255, 1) 100%);
}

html {
    font-size: 16px;
}

.wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.wrapper H1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 70vmin;
    height: 70vmin;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
}


.button-option {
    background: white;
    height: 22vmin;
    width: 22vmin;
    border: none;
    border-radius: 8px;
    font-size: 12vmin;
    color: rgba(200, 230, 100, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.button-option:hover {
    /* background: #0a0027; */
    background: rgb(161, 251, 161);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(127, 218, 166, 0.3);
}

#restart {
    font-size: 1.3em;
    margin-top: 1.5em;
    padding: 1em;
    border-radius: 8px;
    background-color: #0a0027;
    color: #ffffff;
    border: none;
    position: relative;
    margin: 1em auto 0 auto;
    display: block;
}

.popup {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(225, 233, 20, 1) 0%, rgba(0, 212, 255, 1) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    z-index: 2;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    font-size: 12vmin;
}

#new-game {
    font-size: 0.6em;
    padding: 0.5em 1em;
    background-color: #0a0027;
    color: #ffffff;
    border-radius: 0.2em;
    border: none;
}

#message {
    color: #ffffff;
    text-align: center;
    font-size: 1em;
}

.popup.hide {
    display: none;
}