html {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

body {
    background-color: rgb(42, 56, 68);
    align-items: center;
    text-align: center;
}

.nav {
    /* width: 99vw; */

    /* position: fixed; */
    margin-top: 0.5rem;
    background: #334d5b;
    border-bottom: 1px solid rgba(114, 114, 114, 0.15);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    border-radius: 25px;
    text-align: left;
}

.nav-inner {
    max-width: auto;
    margin-left: auto;
    /* push container to the right */
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: flex-end;
    /* right-align folders */
    align-items: center;

    overflow: hidden;
}

.nav-row {
    /* margin-top: 0.5rem; */
    /* margin-bottom: 0.5rem; */
    max-width: auto;
    min-width: 95vw;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* overflow: hidden; */
    flex-wrap: wrap;
    text-align: left;
    /* vertical alignment */
}



/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 0.25rem;
    white-space: nowrap;
    align-content: center;
    padding: 0.5rem 0.5rem;
    float: left;

}

.breadcrumb a {
    text-align: left;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.sep {
    color: rgba(255, 255, 255, 0.6);
}

/* Folder menu */
.folders {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;

}

.folders {
    margin-left: auto;
    /* pushes to the right */
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
}

.folder {
    position: relative;
    color: #fff;
    cursor: default;
    padding-bottom: 0.3rem;
    /* hover buffer */
}

.folder>span {
    opacity: 0.85;
}

.folder:hover>span {
    opacity: 1;
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    right: 0;
    left: auto;
    background: #2a3f4a;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0;
    min-width: 160px;
    top: 100%;
    /* no gap */
    z-index: 1000;
}




.folder:hover .dropdown,
.folder:focus-within .dropdown {
    display: block;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    text-align: left;
    display: block;
    padding: 0.35rem 0.75rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

p {
    color: aliceblue;
    background-color: rgba(7, 11, 35, 0);
    padding: 0.2rem 0.3rem;
    border-radius: 25px;
    text-align: center;
    font-size: 1.4rem;
    /* font-size: 0.7rem; */
    max-width: 100%;

    margin-top: auto;
    margin-bottom: auto;
}

h1 {
    color: aliceblue;
    align-self: center;
    justify-self: center;

    font-size: 7.27vw;
    margin-top: auto;
    margin-bottom: auto;
    /* position: static; */
}