* {
    margin: 0;
    padding: 0;
}

html {
    /* background-color: #b3ffff;
    background: radial-gradient( rgba(179, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.3)); */
    background-color: white;
    text-align: center;
}

#nameDiv {
    margin-top: 50px;
}

input[type="text"],
select {
    margin: 8px 0;
    padding: 12px 12px;
    border: 2px solid black;
}

.input {
    font-size: 25px;
    color: blue;
    font-weight: 700;
    font-family: cursive;
    margin: 20px;
}

#entry {
    width: 150px;
    height: 40px;
    font-size: 23px;
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: #08a742;
    color: white;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

table {
    border-collapse: collapse;
    width: 50%;
    margin: 50px auto;
    background-color: burlywood;
}

table,
tr,
th {
    border: 2px solid black;
    padding: 5px;
}

th {
    font-size: 30px;
    font-weight: 700;
    font-family: Arial;
    color: #004d00;
}

td {
    border: 2px solid black;
    font-size: 25px;
    color: crimson;
    font-weight: 400;
    font-family: Georgia, "Times New Roman", Times, serif;
}