*{
    margin: 0;
    padding: 0;
}
.bg{
    background-image: linear-gradient(to bottom, #76e4b6,#e4c6f7);
    height: 100vh;
    width: 100vw;
    min-height: fit-content;
}
.heading{
    display: flex;
    justify-content: center;
    padding: 5px;
    font-size: 3rem;
    color: blueviolet;
}
.container{
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    flex-wrap: wrap;
}
.boxes{
    height: 20vh;
    width: 10vw;
    padding: 3px;
    border-radius: 10px;
    margin: 2px;
    min-width: 120px;
    min-height: 150px;
    font-size: 3rem;
    background-color: #cecfe7;
    color: black;
}
.boxes:hover{
    background-color: rgba(255, 255, 255,0.5);
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.25);
}
.para{
    display: flex;
    justify-content: center;
    padding: 5px;
    color: crimson;
    text-shadow: 0px 20px 50px red;
    font-size: 3rem;
    animation: clr 3s linear 0s infinite alternate-reverse;
    font-weight: 700;
}
@keyframes clr{
    0%{
        color: crimson;
        text-shadow: 0px 20px 50px red;
    }
    50%{
        color: white;
        text-shadow: 0px 20px 50px rgba(255, 0, 0, 0.75);
    }
    100%{
        color: red;
        text-shadow: 0px 20px 50px red;
    }
}
.replay{
    display: flex;
    justify-content: center;
}
.restart{
    height: 10vh;
    width: 15vw;
    font-size: 2rem;
    background-color: black;
    color: white;
    border-radius: 20px;
    min-width: 150px;
    height: 80px;
}
.restart:hover{
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.5);
    color: skyblue;
}
#sound{
    font-size: 3rem;
}
.audio{
    width: 4vw;
    height: 7vh;
    border-radius: 50%;
    box-shadow: 0px 2px 2px 4px purple;
    margin-left: 10vw;
}
.audiosrc{
    position: fixed;
    x: -9000px;
    y: -9000px;
}