/*general*/
body {
    background-color: #101010;
    color: #DADADA;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-size: 1em;
}

div.content {
    display: grid;
    grid-template-columns: 21% 1fr 20%;
    height: 100vh;
    overflow: hidden;
}

div.middle {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

/*navigation*/
.h-pic {
    width: 90%;
    padding-left: 3%;
    height: auto;
}

nav {
    overflow-y: auto;
    padding-top: 20px;
    border-right: 3px solid #1d1d1d;
}

nav li {
    margin-top: 20px;
    list-style-type: none;
    font-size: 1.3em;
    padding-left: 0%;
}

.nav {
    color: #DADADA;
    text-decoration: none;
}

/*main content*/
main {
    font-size: 1.1em;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.indent {
    text-indent: 1em;
}
/*links*/
.text-link {
    color: #DADADA;
    font-style: italic;
}

.text-link:hover {
    color: #f2255f;
}

/*footer*/
footer {
    margin-top: auto;
    padding: 20px;
}

.foot-hr {
    margin-top: 5%;
    margin-bottom: -1%;
}

/*right panel*/
aside {
    border-left: 3px solid #1d1d1d;
    overflow-y: auto;
}

.aside-table {
    width: 90%;
    height: auto;
    margin-left: 5%;
}

td {
    border-bottom: 2px solid #1d1d1d;
}

th {
    background-color: #161618;
}
.bc {
    border-collapse: collapse;
}
.aside-pic {
    width: 90%;
    margin-left: 5%;
    margin-bottom: -5px;
}

.aside-header {
    text-align: center;
    margin-bottom: 0px;
}

/*scrollbar*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #161618;
}

::-webkit-scrollbar-thumb {
    background: #393639;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DADADA;
}
/*location-gallery*/
figcaption {
    font-style: oblique;
    padding-top: 0;
    margin-top: -3px;
}
.fig-img {
    width: 30%;
    max-width: max-content;
    height: auto;
}
/*Bad endings section*/
.bad-e {
    margin-top: -1%;
}
/*Details section*/
.norm-li {
    margin-bottom: 0.5%;
}
.lst-disc {
    list-style-type: disc;
}