* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

body {
    display: relative;
}

nav {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    border-bottom: 2px solid black;
    margin-bottom: 20px;
}

button {
    border: 0px;
    background-color: green;
    color: white;
    padding: 5px 20px;
    cursor: pointer;

}

.board {
    background-color: rgb(0, 225, 255);
    border: 5px solid black;
    height: 75vh;
    width: 70%;
    margin: auto;
    
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
}

.tile {
    border: 2px solid black;
    font-size: 10em;
    text-align: center;
    cursor: pointer;
    
}

.results {
    display: absolute;
    margin: auto;
    height: 40vh;
    width: 50vw;
    border-radius: 15px;
    padding: 15px;

}

.results h1,
.results p:nth-child(n+2) {
    text-align: center;
}
.results p:first-child {
    text-align: right;
    font-weight: bold;
    color: red;
    font-size: 2em;
    cursor: pointer;
}

#curr-player {
    margin-bottom: 20px;
    margin-left: 20px;
}