body {
    display: grid;
//    border: 1px solid black;
    background-color: rgb(226, 202, 64);
    margin: 0;
}
header {
    display: flex;
//    border: 1px solid black;
    background-color: white;
    height: 50px;
    justify-content: space-around;
}
main {
    display: flex;
    border: 2px solid black;
    margin-top: 20px;
    padding-top: 20px;
    background-color: rgb(247, 239, 138);
}
section {
    display: flex;
    flex-direction: column;
//    border: 1px solid green;
    text-align: center;
    align-items: center;
}
div {
    display: flex;
//    border: 1px solid black;
    margin-bottom: 20px;
//    background-color: white;
}
p {
//    border: 1px solid blue;
}
table {
    border: 4px solid black;
    border-radius: 10px;
    background-color: rgb(128, 127, 127);
    text-align: center;
    width: fit-content;
    margin: 0 1em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
tr {
    height: 35px;
}
th {
    border: 1px solid black;
    background-color: rgb(235, 191, 48);
    padding: 5px;
    font-size: 130%;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
}
td {
    border: 1px solid black;
    background-color: white;
    padding: 5px;
}
a {
//    border: 1px solid pink;
    color: black;
    text-decoration: none;
    text-align: center;
}
a:hover {
    color: red;
}
.header-links {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    outline: 2px solid black;
    border-collapse: collapse;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 120%;
}
.header-links:hover {
    background-color: rgb(221, 221, 221);
    color: black;
}
.box-table {
    border-collapse: collapse;
    margin: 5px 60px;
    width: fit-content;
    height: fit-content;
}
.box-table td {
    min-width: 1em;
    min-height: 1em;
    max-width: 1em;
    max-height: 1em;
    text-align: center;
    vertical-align: middle;
    padding: 0;
}
.label {
    font-size: 90%;
}
.won {
    background-color: rgb(253, 209, 12);
}
.lost {
    background-color: rgb(145, 145, 145);
}
.hidden {
    display: none;
}
.profile {
    height: 1.5em;
    width: 1.5em;
    border-radius: 50%;
}
.fit {
    width: 4em;
    height: 4em;
}
#poster {
    border: 5px solid black;
    width: 2.5in;
    margin-right: 30px;
    margin-left: 40px;
}
#awards {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 150%;
    font-weight: bold;
}
#title {
    font-size: 170%;
}
#head {
    list-style-type: none;
    font-size: 150%;
    font-weight: bold;
    margin-bottom: 10px;
}
#check {
    display: flex;
    flex-direction: column;
}
#watched {
//    border: 1px solid black;
    height: 3em;
    width: 3em;
    margin: 0;
}
#tables {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#left-bar {
    width: 0;
}
#middle {
    width: 100%;
}
#right-bar {
    width: 0;
}