*{
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
   
}

.title{
  margin: 2rem;
  font-family: cursive;

}

#gameBoard{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 400px;
    margin: 0 auto;
    gap: 15px;
    margin: 2rem;
}

.inp{
    width: 17rem;
    height: 3rem;
    font-size: 2rem;
    border: 1px solid black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    padding: 5px;
}

.btn{
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px;
    background-color: aliceblue;
    border: 1px solid rgba(0, 0, 0, 0.458);
    border-radius: 10px;
}

.display-winner{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.name{
    font-size: larger;
    font-weight: bold;
}

.great{
    font-weight: bold;
    font-size: 2rem;
}

.block{
    background-color: rgb(216, 223, 223);
    height: 8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-family: sans-serif;
}

.block:hover{
    box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.3);
    background-color: rgb(192, 195, 195);

}