body {
    background: #343436;
    color: #adadad;
    margin: 8px 16px;
}

a {
    color: #adadad
}

ul {
    margin: 0;
    flex: 1;
}

img {
    max-width: 360px;
    max-height: 150px;
    padding: 10px 10px 4px;
    align-self: center;
}

.container {
    text-align: center;
    margin: 50px 0;
}

.nof-found {
    background: #00ff0029;
}

#checkinglist>div:not(.found) {
    align-items: center;
    justify-content: center;
}

#checkinglist>div {
    display: flex;
    flex-direction: column;
    width: 420px;
    margin: 16px 10px;
    padding: 8px 8px;
    border-radius: 5px;
    word-break: break-word;
    font-family: "Times New Roman";
    box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%), 0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

#checkinglist>div:hover {
    box-shadow: 0px 6px 7px -4px rgb(0 0 0 / 20%), 0px 11px 15px 1px rgb(0 0 0 / 14%), 0px 4px 20px 3px rgb(0 0 0 / 12%)
}

#fileSelect {
    display: inline-flex;
    height: 100px;
    width: 500px;
    font-size: 42px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-radius: 5px;
    user-select: none;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    background-color: #4a4e54;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

#fileSelect:hover {
    background-color: #52575d;
}

#checkinglist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}