*{
    margin: 0px;
    padding: 0px;
    border: 0px;
    text-align: center;
}

body {
    background: linear-gradient(135deg, #6e7cfc, #54c0c6);
    height: 100vh;
}

.title-container {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
}

.title {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 0, 0, 0.3);
}

.title {
    background: linear-gradient(45deg, #ff61a6, #ffdd61, #4caf50, #61c4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.games {
    display: flex;
    justify-content: center;
}
.game {
    margin-top: 10vmin;
    height: 60vmin;
    width: 60vmin;
    background-color: #2FC5CC;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 1rem;
    border-radius: 1.8rem;
}

.cells {
    background-color: #6DF1CC;
    cursor: pointer;
    font-size: 8vmin;
    font-family: cursive;
    color: red;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}  

.cells:hover {
    background-color: #b6f0e0;
}

#cell-0 {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-top-left-radius: .9rem;
}

#cell-1 {
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

#cell-2 {
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    border-top-right-radius: .9rem;
}

#cell-3 {
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

#cell-4 {
    border: 1px solid black;
}

#cell-5 {
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

#cell-6 {
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom-left-radius: .9rem;
}

#cell-7 {
    border-right: 1px solid black;
    border-top: 1px solid black;
    border-left: 1px solid black;
}

#cell-8 {
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-bottom-right-radius: .9rem;
}

.musicBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10vmin;
    right: 10vmin;
    background-color: #E3FFC3;
    height: 30px;
    width: 45px;
    border-radius: 1rem;
    border: 3px solid #B8E5A6 ;
    color: rgb(91, 91, 91);
    cursor: pointer;
}

.reset-new {
    background-color: #DA498D;
    height: 35px;
    width: 115px;
    border-radius: 1rem;
    border: 4px solid #69247C ;
    color: #FAC67A;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.instruction {
    font-family:cursive;
    font-weight: 600;
    font-size: 2rem;
    margin: 14px;
}

@media only screen and (max-width: 520px) {
    body {
        margin-top: 30px;
    }
    .musicBtn {
    top: 30vmin;
    }

    .games {
        position: relative;
        top: 90px;
    }

    .game {
        height: 85vmin;
        width: 85vmin;
    }
    .instruction {
        position: relative;
        top: 105px;
    }

    .reset-new {
        position: relative;
        top: 120px;
    }
}