@font-face {
    font-family: 'B612';
    src: url('fonts/B612-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'B612';
    src: url('fonts/B612-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    background: #49618F;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #dddddd;
    font-family: 'Helvetica', sans-serif;
    /* background: #49618F; */
}

#background-video {
    position: fixed;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

nav {
    width: 100%;
    background-color: #3a4f73;
    border-bottom: 1px solid white;
    font-family: 'B612', sans-serif;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
}

.nav-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 2em 0 2em;
    margin-right: 1em;
    border-right: 1px solid white;
}

.nav-menu {
    display: flex;
    flex-direction: row    
}

.title {
    font-size: 2em;
}

.author {
    font-family: 'Helvetica', sans-serif;
    font-weight: lighter;
    font-size: 1em;
    padding: 0 1em 1em 2em;
}

.menu-item {
    font-family: 'Helvetica', sans-serif;
    font-weight: lighter;
    font-size: 1.5em;
    padding: 1em 1em;
    text-decoration: none;
    color: white;
}

.menu-item:hover {
    text-decoration: underline;
}

.nav-menu {
    justify-content: start;
}

.menu-item a {
    position: relative;
    color: white;
    text-decoration: none;
    /* Removes the default underline */
    display: inline-block;
    /* Allows the pseudo-element to position correctly */
}

.menu-item a:link {
    color: white;
    text-decoration: none;
}

.menu-item a:visited {
    color: white;
    text-decoration: none;
}

.menu-item a:hover {
    color: white;
    text-decoration: none;
}

.menu-item a.active {
    color: white;
    text-decoration: none;
}



.menu-item a::after {
    background-color: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    transition: transform .7s cubic-bezier(.19, 1, .22, 1), transform-origin .7s step-end;
    transform-origin: right center;
}

.menu-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.menu-item a.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

nav ul li:last-child {
    border-right: none;
}

#content {
    padding-bottom: 10em;
    /* margin-bottom: 10em; */
}

.content-section {
    width: 50%;
    min-width: 40em;
    margin: 0 auto;
    padding: 2em 2em 0em 2em;
    box-sizing: border-box;
    font-size: 1.2em;
}

.screenshots {
    display: flex;
    /* Use Flexbox */
    justify-content: space-evenly;
    /* Distribute items evenly */
    align-items: center;
    /* Align items vertically */
    width: 100%;
    /* Set the width to fill the container */
}

.screenshot {
    flex: 0 0 auto;
    /* Don't grow, don't shrink, based on content */
    margin: 5px;
    /* Optional: Add some space around each screenshot */
}

pre {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
        "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 1.8em;
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(to bottom left, rgba(81, 38, 57, 0.8), rgba(58, 58, 58, 0.8));
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1em 1em 1.7em 1em;
    display: block;
    /* Ensures the element is a block-level element */
    margin-left: auto;
    /* Sets the left margin to auto */
    margin-right: auto;
    /* Sets the right margin to auto */
    text-align: left;
    /* Keeps the text left-aligned */
    /* Optional: you can set a specific width if you want */
    width: fit-content;
    /* Example: sets the width to fit its content */
}

sup {
    display: none;
    color: yellow;
    font-size: 0.6em;
    /* border-radius: 50%;
    width: 3em;
    height: 3em;
    padding-left: 0.2em;
    padding-right: 0.2em;

    background: rgba(0,0,0,0);
    border: 2px solid #ffff;
    text-align: center; */
}

a:link {
    color: #EEEE00;
    /* Bright yellow for unvisited links to stand out */
    text-decoration: none;
    /* Optional: removes underline */
    text-decoration: underline;
    /* Optional: underlines link on hover */
}

a:visited {
    color: #EEEE00;
    /* A darker shade of yellow for visited links */
    text-decoration: none;
    /* Optional: removes underline */
    text-decoration: underline;
    /* Optional: underlines link on hover */
}

a:hover {
    color: #FFFF44;
    /* White on hover for contrast */
    text-decoration: underline;
    /* Optional: underlines link on hover */
}

a:active {
    color: #FFD700;
    /* Gold color for active links */
    text-decoration: none;
    /* Optional: removes underline */
}

a:focus {
    /* Yellow outline for accessibility */
    /* outline: 2px solid #FFCC00; */
    color: #FFD700;
    /* Gold color for focus */
}

blockquote {
    font-size: 2.5em;
    font-weight: bold;
    color: #dddddd;
    border-left: 0.25em solid #dddddd;
    padding-left: 0.5em;
    margin-left: 0;
}

.audio-container {
    display: flex;        /* Enables Flexbox */
    justify-content: center; /* Horizontally centers the child in the container */
    align-items: center;  /* Vertically centers the child in the container (if needed) */
  }

  .delete {
    color: rgb(252,69,59);
    font-weight: bold;
  }