#board {
    display: grid;
    margin: auto;
    margin-top: 20px;
    width: 500px;
    height: 500px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.square {
    border: 1px solid;
    border-color: black;
    background-color: rgb(156, 253, 205);
    font-size: 100px;
    vertical-align: middle;
    padding-top: 20px;
    text-align: center;
}

button {
    padding: 20px;
    font-size: 20px;
}

.hide {
    display: none;
}

#name-input, #winner-display {
    margin-left: 35%;
    margin-top: 10%;
    position: absolute;
    height: 100px;
    width: 350px;
    background-color: rgb(193, 155, 207);
    color: white;
    font-size: 20px;
    border: 1px solid;
    border-radius: 20px;
    text-align: center;
}

#winner-display {
    font-size: 30px;
}

#winner {
    margin-top: 10px;
}

#players {
    margin-top: 20px;
}

#top {
    display: flex;
    justify-content: space-between;
    margin-left: 20%;
    margin-right: 20%;
}
