.background{
    background-color: #12181B;
    height: 100vh;
     
}
.tile{
    color: white;
    text-align: center;
    font-size: 40px;
    
}
.display{
    color: white;
    font-size: 25px;
    text-align: center;
    
    margin-bottom: 1em;
}
.hide{
    display: none;
}
.container{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 33% 33% 33%;
    max-width: 300px;
}
.title{
    border: 1px solid white;
    min-width: 100px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    cursor: pointer;
}
.playerX{
    color: #09C372;
}
.playerO{
 color: #498AFB;
}
.controls{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}
.controls button{
    color: white;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
    margin-left: 1em;
    cursor: pointer;
    margin-left: 200px;
    
}

.restart{
    background-color: #498AFB;
}
#reset{
    background-color: #FF3860;
    
}
