/* Allgemeine Stile für beide Seiten */
body {
    background-color: black;
    color: white;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

/* Startseite: Text oben */
body.index-page {
    display: block;
    text-align: center;
    padding-top: 50px;
}

/* Tic Tac Toe Seite: mittig */
body.tic-tac-toe-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.groß {
    font-size: 70px;
}

.mittel {
    font-size: 30px;
}

h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
}

td {
    border: 2px solid white;
    width: 100px;
    height: 100px;
}

.cell-btn {
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

#status {
    margin-bottom: 15px;
    font-size: 20px;
}

#startBtn {
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 8px;
    cursor: pointer;
}
