body {
    font-family: Arial, sans-serif;
    background: #fffdf8;
    width: 70%;
    max-width: 900px;
    margin: auto;
    font-size: 14px;
}
/* header type */
header {
    margin-top: 100px;
    margin-bottom: 50px;
}
h1, h2, p {
    color: #ff7ab8;
    text-align: center;
}
/* all table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
th, td {
    border: 1px solid gray;
    padding: 10px;
    text-align: center;
}
th {
    background:#ffe3f0;
}
/* crops images to square */
td img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
/* centers and changes size of tictactoe box */
.game {
    width: 200px;
    margin: 20px auto;
}
/* changes individual boxes */
.game td {
    width: 50px;
    height: 50px;
    font-size: 20px;
    vertical-align: middle;
}
/* form */
form {
    border: 1px solid lightgray;
    padding: 25px;
    border-radius: 10px;
}
input[type="text"], select {
    padding: 10px;
    width: 250px;
}