.generaltext {
    text-align: left;
    font-family: serif;
    width: 70%;
    margin: auto;
    padding: 2%;
    border-width: 2px;
    border-color: black;
    border-style: ridge;
    background-color: whitesmoke;
}

.tablebox {
    text-align: left;
    font-family: serif;
    width: 90%;
    height: 85vh;
    margin: auto;
    padding: 2%;
    border-width: 2px;
    border-color: black;
    border-style: ridge;
    background-color: whitesmoke;
    overflow-x: scroll;
}

.table_vert_scroll_box {
    height: 90%;
    display: inline-block;
    overflow-x: visible;
    overflow-y: scroll;
}

.essay {
    background-color: white;
    margin: 10px;
    padding: 10px;
}

body {
    background-color: #333;
}

a {
    text-decoration: none;
}

.genregrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 8px;
}

.genrebox {
    background-size: cover;
    background-position: center center;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.genrebox:hover {
    border: 4px solid lightblue;
    margin: -4px;
}

.genrebox h1 {
    color: white;
    font-size: x-large;
    position: relative;
    left: 5px;
    top: -12px;
}

.genrebox p {
    left: 5px;
    color: white;
    font-size: x-small;
    position: relative;
    bottom: 0px;
}

.widelink {
    width: 96%;
    height: 120px;
    background-size: cover;
    background-position: center;
    margin: 2%;
    display: flex;
}

.widelinker {
    background-color: rgba(0,0,0,0.5);
    flex-grow: 1;
    padding-top: 20px;
}

.widelink h1 {
    color: white;
    font-size: xx-large;
    width: 100%;
    text-align: center;
}

.nohelpnote {
    background-color: yellow;
    border-width: 2px;
    margin: 20px 20px;
    border-color: black;
    border-style: solid;
    padding-left: 1em;
}

table {
    width: 100px;
    overflow: scroll;
    border: 1px solid black;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    vertical-align: middle;
    padding: 3px;
}

tr:nth-child(even) {
    background-color: #ddd;
}

@media (max-width: 1000px) {
    .nohelpnote {
        display: none;
    }
    .generaltext {
        width: 100%;
        margin: 4px;
    }
}