html {
    background-color: var(--profile-color);
    height: 90dvh;
}
nav {
    background-color: #e6e6e6;
    margin: 0;
    padding: 4px 8px 6px 8px;
    display: none !important;
    /* border-bottom: 1px solid #cecece; */
}

#special-fish-link-back {
    position: absolute;
    bottom: 18px;
    left: 18px;
}
#random {
    position: absolute;
    bottom: 18px;
    right: 18px;
}
#special-fish-link-back, #random {
    background-color: white;
    padding: 4px;
    border-radius: 3px;
    text-decoration: none;
}

body {
    height: 100%;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    gap: 18px;
    height: 100%;
}
.list {
    font-size: 16px;
    /* border: 1px solid #d0d0d0; */
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 520px;
    padding: 0;
    background-color: white;
    overflow-y: auto;
}
.list-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Times New Roman', Times, serif;
    /* border-bottom: 1px solid #d0d0d0; */
    /* background-color: #f7f7f7; */
}
.list-info a {
    color: #000;
    text-decoration: none;
}
.small {
    width: 10px;
    height: 10px;
}
.list .list-body {
    padding: 10px;
    padding-bottom: 10px;
}
.list a {
    text-decoration: none;
    color: #143ac4;
}
.list a:hover {
    text-decoration: underline;
}
.list h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 4px;
}
/* .list ul {
    list-style-type: square;
    margin-left: 15px;
} */
.list li {
    border-bottom: 1px solid #dedede;
    margin-bottom: 0;
    padding: 3px 0;
    word-break: break-word;
}
.list li:last-child {
    border: 0;
}

@media (max-height: 800px) {
    main {
        justify-content: flex-start;
    }
    .list {
        margin-top: 30px;
    }
}