@font-face {
    font-family: "CodeNewRoman";
    src: url("./fonts/CodeNewRomanNerdFont-Regular.otf");
}

@font-face {
    font-family: "CodeNewRomanMono";
    src: url("./fonts/CodeNewRomanNerdFontMono-Regular.otf");
}

body {
    margin: 0;
    font-family: 'CodeNewRoman';
}

h1 {
    margin: 0px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.167;
    font-family: CodeNewRomanMono;
}

header {
    display: flex;
    flex-direction: row;
    -moz-box-align: center;
    align-items: center;
    height: 57px;
    border-bottom: 3px solid rgb(204, 204, 204);
    padding-left: 16px;
    padding-right: 16px;
}

footer {
    display: flex;
    flex-direction: row;
    height: 80px;
    padding: 16px;
    border-top: 3px solid rgb(204, 204, 204);
    background: rgb(238, 238, 238);
}

#content {
    min-height: calc(100vh - 190px);
    padding-left: 16px;
    padding-right: 16px;
}

.breadcrumbs {
    display: flex;
    font-size: large;
}

.breadcrumbs > a:hover:not(:last-of-type) {
    cursor: pointer;
    text-decoration: underline;
}

.breadcrumbs > a:last-of-type {
    color: rgb(241, 89, 42);
    cursor: default;
}

.breadcrumbs > a:not(:last-of-type)::after {
    content: '>';
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
}

.options {
    display: flex;
    flex-direction: column;
}

.options > div {
    padding: 2px 16px;
    border-bottom: thin solid rgb(238, 238, 238);
    border-radius: 4px;
}

.options > div:hover {
    background: rgb(238, 238, 238);
}

.files {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 4px;
}

.files > div {
    background: rgb(238, 238, 238);
    cursor: pointer;
    padding: 4px;
}

.files > div > img {
    height: 85%;
    width: 100%;
    object-fit: contain;
}
