* {
    padding: 0;
    margin: 0;
    font-family: 'Itim', cursive;
}
.background{
    background-color: #574141;
    height: 100vh;
    padding-top: 1px;
}
.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 33% 33% 33%;
    max-width: 300px;
}
.title {
    color: white;
    text-align: center;
    font-size: 40px;
    margin-top: 10%;
}
.tile{
    border: 1px solid #FEEBD6;
    min-width: 100px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    cursor: pointer;
}
.display{
    color: white;
    font-size: 25px;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}
.hide{
    display: none;
}
.playerX {
    color: #09C372;
}
.playerO {
    color: #498AFB;
}
.controls{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}
#reset{
    background-color: #70D5E0;
    color: white;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
    margin-left: 7px;
    cursor: pointer;
    transition: all 300ms ease;
}
#reset:hover{
    background-color: #995D6C
}