html {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    cursor: crosshair;
    -webkit-font-smoothing: none;
    text-align: justify;
    background-color: #fffefb;
}

.content {
    max-width: 570px;
    margin: 8vh auto;
    padding: 0 20px;
}

header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#title {
    cursor: pointer;
}

.nav {
    position: -webkit-sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav ul,
.footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0px 30px 0px 20px;
    text-align: left;
    gap: 20px;
}

.nav ul {
    background: linear-gradient(180deg, #fffefb 65%, #91919100 100%);
    padding-bottom: 10px;
}

select {
    border: 1.2px dotted black;
    background: #ffffff78;
}

h1 {
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
}

a:hover {
    background-color: rgb(34, 34, 34);
    color: white;
}

a {
    color: rgb(34, 34, 34);
}

::selection {
    background-color: rgb(34, 34, 34);
    color: #fff;
}

hr {
    border-top: dotted 1px;
}

summary {
    list-style: none;
    line-height: 1.5;
    cursor: pointer;
}

details li {
    list-style: none;
}

details li::before {
    background-image: none;
    content: '# ';
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar:hover {
    background: #555;
}

img {
    border: 0.3px solid black;
}

figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

figcaption {
    padding-top: 10px;
}