@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

body{
    font-family: 'Gloria Hallelujah', cursive;
}

.container{
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-container{
    display: grid;
    grid-template-columns: 75px 75px 75px;
    gap: 20px;
    margin-bottom: 1rem;
}
.box{
    width: 75px;
    height: 75px;
    box-shadow: 5px 5px 5px black;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: aquamarine;
    font-size: 40px;
    font-weight: 600;
    cursor: pointer;
}

button{
    display: none;
}
.input {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.input:hover {
    outline: none;
}
.wave {
    border-radius: 40px 0 40px 0;
    transition: 0.3s ease;
}
.waveC {
    background-color: rgb(255, 254, 191);
    color: rgb(197, 0, 197);
    border: 2px solid rgb(230, 146, 255);
    box-shadow: 2px 2px 2px 1px rgba(249, 73, 255, 0.4);
}
.waveC:hover {
    border: 3px solid rgb(255, 251, 0);
    box-shadow: 12px 12px 2px 1px rgba(249, 73, 255, 0.4);
}