/* Website background */
body {
    background: linear-gradient(lightblue);
}

/* Main title */
h1 {
    color: darkred;
    font-family: cursive;
    text-align: center;
}

/* Subtitle */
h2 {
    color: navy;
    font-family: cursive;
    text-align: center;
}

/* Main table */
table {
    border-collapse: collapse;
    width: 80%;
    margin: auto;
    background-color: white;
}

/* Table boxes */
th, td {
    border: 2px solid black;
    padding: 10px;
    text-align: center;
    font-family: cursive;
}

/* Table headings */
th {
    background-color: crimson;
    color: white;
}

/* Images */
img {
    width: 250px;
    height: 150px;
}

/* Tic tac toe board */
.tictacktoe {
    width: 300px;
    margin-top: 20px;
}

/* Form section */
form {
    font-family: cursive;
    text-align: center;
}

/* Submit button */
input[type="submit"] {
    background-color: darkred;
    color: white;
    padding: 10px;
}

/* Dropdown menu */
select {
    font-family: cursive;
}

/* Color picker */
input[type="color"] {
    width: 50px;
    height: 30px;
}

/* Meter bar */
meter {
    width: 200px;
}