*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body{
    background-image: url(13.jpg);
    background-size: cover;
  }

.dimmed-main, .dimmed{
    filter: blur(10px);
}

#turnSelector{
    position: fixed;
    top: 15vw;
    left: 30vw;
    height: 30vh;
    width: 30vw;
    font-size: 50px;
    background-color: rgba(95, 158, 160, 0.4);
    border: 2px solid rgb(35, 61, 58);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    transition: all 0.2s ease-in-out;
   z-index: 1;
}
h3{
    width: 100%;
    font-size: smaller;
    text-align: center;
}
.turnButton{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: rosybrown;
    color: #2f3b37;
    -webkit-text-stroke-color: rgb(35, 61, 58);
    -webkit-text-stroke-width: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    margin: 0;

}

.turnButton:hover{
    cursor: pointer;
    width: 70px;
    height: 70px;
    background-color: rgba(127, 185, 166, 0.5);

}
.turnButton:active{
    background-color: #7fb9a6;
    height: 50px;
    width: 50px;
}


h2{
    text-align: center;
    background: rgb(255, 144, 100);
    mix-blend-mode: lighten;
    border: 3px solid rgb(35, 61, 58);
    border-radius: 10px;
    font-family: sans-serif;
    color: black; /* Make the text color transparent */
    -webkit-text-stroke-color: rgb(35, 61, 58);
    -webkit-text-stroke-width: 2px;
    /* text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); */
    font-size: 50px;
    margin: 20px 0px 50px 0px;
}

main{
    display: flex;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 150px;
}
.board{
    font-family: sans-serif;
    display: flex;
    justify-content: space-evenly;
    align-content: space-evenly;
    flex-wrap: wrap;
    background-color: rgb(71, 120, 103);
    border: 4px solid rgb(35, 61, 58);
    border-radius: 8px;
    height: 400px;
    width: 400px;
    
}
.cell{
    width: 130px;
    height: 130px;
    background-color: #7fb9a6;
    border: 2px solid rgb(35, 61, 58);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 75px;
    font-family: sans-serif;
    color: #466060;
    -webkit-text-stroke-color: rgb(35, 61, 58);
    -webkit-text-stroke-width: 2px;
}

.controls{
    background-color: #00000080;
    border-radius: 16px;
    height: 400px;
    width: 200px;
}

#ctrl2{
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%; 
}
#resetB{
    width: 50%;
    height: 15%;
    border-radius: 8px;
}
#winner{
    color: antiquewhite;
    font-size: 2em;
    border-color: white;
    border-radius: 16px;
    height: 50%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

