/* Universal Values */
* {
    margin: 0;
    padding: 0;
    background-color: #000000;
    font-family: "Notable", sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
}


/* Winner And New Game Popup */
.winvisibility {
    visibility: hidden;
}

.mainBody :not(.winContainer, .winPopup) {
    filter: blur(5px);
}

.winContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.winPopup {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    margin-top: 900px;
    height: 300px;
    width: 330px;
    background-color: rgba(255, 255, 255, 0.788);
    z-index: +1;
    border-radius: 50px;
    gap: 40px;
}

.winContainer .winPopup h1 {
    color: black;
    text-align: center;
    font-size: 20px;
    background-color: transparent;
    filter: blur(0px);
    letter-spacing: 1px;
}

.winContainer .winPopup button {
    background: rgba(0, 0, 0, 0.452);
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    letter-spacing: 3px;
    filter: blur(0px);
}

.winContainer .winPopup i {
    background-color: transparent;
    font-size: 20px;
}


/* Game Heading  */
.myHeading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.myHeading .h1 h1 {
    letter-spacing: 5px;
    color: white;
    font-size: 30px;
}

.myHeading .h2 h2 {
    letter-spacing: 4px;
    color: white;
    font-size: 9px;
}



/* Main Game Container  */
.container {
    height: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .game {
    height: 260px;
    width: 260px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container .game .box {
    height: 80px;
    width: 80px;
    background-color: aliceblue;
    border: none;
    border-radius: 10px;
    color: #000000;
    font-size: 28px;
}



/* Reset The Game Button */
.resetgame {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.resetgame button {
    padding: 18px 30px;
    background-color: white;
    color: black;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 800;
    border-radius: 10px;
    border: none;
}

.resetgame i {
    background-color: transparent;
    font-size: 20px;
}

/* Footer - Dev Credits & Accounts */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.footer .devcredits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    position: absolute;
    bottom: 50px;
}

.footer .devcredits .devname h3 {
    font-size: 11px;
    font-weight: 12px;
    letter-spacing: 4px;
}

.footer .devcredits .devsocials a {
    color: white;
    text-decoration: none;
}

.footer .devcredits .devsocials i {
    font-size: 32px;
    letter-spacing: 8px;
}


/* END OF CSS */