/* Schrijf hier je CSS */

h1 {
    position: absolute;
    margin-top: -10vh;
    width: 20vw;
    left: 40vw;
    right: 40vw;
    text-align: center;
    font-size: 5vmin;
}

h2 {
    position: absolute;
    margin-top: -9vh;
    font-size: 3vmin;
}

a {
    position: absolute;
    margin-top: -9vh;
    right: 2vw;
    font-size: 3vmin;
    color: black;
}

h3 {
    position: absolute;
    margin-top: -5vh;
    font-size: 3vh;
}

h4 {
    position: absolute;
    margin-top: -7vh;
    width: 10%;
    left: 25%;
    text-align: left;
    font-size: 3vh;
}

h5 {
    position: absolute;
    margin-top: -7vh;
    width: 10%;
    right: 25%;
    text-align: right;
    font-size: 3vh;
}

button {
    cursor: pointer;
    position: absolute;
    margin-top: 82vmin;
    min-width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 3vmin;
}

table {
    max-width: 80vh;
    aspect-ratio: 1 / 1;
    border: 0px solid red;
    width: 80%;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
}

td {
    border: 3px solid black;
    border-radius: 50%;
    vertical-align: center;
    text-align: center;
    background-color: white;
}

#O {
    background-color: rgb(255, 0, 191)
}

#X {
    background-color: yellow;
}

#p {
    background-color: green;
    cursor: pointer;
}

footer {
    position: absolute;
    bottom: 1vh;
    left: 50vw;
    transform: translateX(-50%);
    font-size: 2vmin;
}