* {
    padding: 0;
    margin: 0;
    font-family: monospace, serif;
    text-decoration: none;
}

.gamemode-selector {
    text-align: center;
    display: grid;
    margin: 50px;
}

.gamemode-selector a {
    background-color: #FF3860;
    color: #f4f4f4;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.text {
    color: ghostwhite;
    text-align: center;
    padding-top: 30%;
    font-size: 80px;
}

body {
    background: #12181B;
}


.ultimate {
    color: #FF3860;
}

.ult {
    color: #FF3860;
    font-size: 65px;
}

.background {
    background-color: #12181B;
    height: 100vh;
    padding-top: 1px;
}

.title {
    color: ghostwhite;
    text-align: center;
    font-size: 40px;
    margin-top: 10%;
}

.display {
    color: ghostwhite;
    font-size: 25px;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.hide {
    display: none;
}
.hiden {
    background-color: #12181B;
    color: #12181B;
}

.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 33% 33% 33%;
    max-width: 300px;
}

.tile {
    border: 1px solid ghostwhite;
    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;
    padding-right: 10px;
}


#reset {
    background-color: #FF3860;
    color: ghostwhite;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
    margin-left: 1em;
    cursor: pointer;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10em;
}

.play-btn {
    background-color: #FF3860;
    color: ghostwhite;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 80px;
    text-decoration: none;
    cursor: pointer;
}
