* {
    cursor: default;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: white;
    --background-color: rgb(0, 0, 0);
}
h1 {
    font-weight: bold;
    font-size: 4vw;
    color: white;
}
h2 {
    font-weight: bold;
    font-size: 3vw;
    margin-top: 0;
    margin-bottom: 1vw;
}
h3 {
    font-weight: bold;
    font-size: 1.5vw;
    line-height: 0;
}
p {
    font-size: 1.3vw;
    line-height: 2vw;
    margin: 0;
}
.caption {
    font-size: 1vw;
}
#header a {
    text-underline-offset: -9999px;
}
a:hover {
    opacity: 50%;
}
span {
    display: flex;
    flex-direction: row;
}

body {
    background-color: var(--background-color);
    margin: 0px;
    min-height: 100vh;
}

.background {
    width: 100%;
    background-image: url('../img/band/background.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}
.content {
    padding: 2%;
    align-items: center;
    min-height: 100vh;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content:flex-start;
}
#header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
#header > a {
    width: 15%
}
.logo {
    width: 100%;
}
.navigation {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.2vw solid white;
    margin: 1%;
}
.page-links text {
    font-weight: bold;
    font-size: 1.5vw;
}
.page-links {
    padding: 1%;
    display: flex;
    flex: 0.7;
    justify-content: space-between;
}
.ext-links {
    padding: 1%;
    display: flex;
    flex: 0.2;
    justify-content: space-between;
    padding-inline: 2%;
}
.icon {
    height: 2.5vw;
    filter: invert(100%);
    background-color: rgba(0, 255, 255, 0);
}
.placeholder {
    padding: 8%;
}
#body {
    margin-inline: 10%;
    width: 80%
}
.ext-links-footer {
    display: flex;
    justify-content: center;
    gap: 3vw;
    padding: 2vw;
}

html {
  scrollbar-width: thin;             /* Options: auto, thin, none */
  scrollbar-color: #dddddd var(--background-color);  /* thumb_color track_color */
}

/* Legacy WebKit Engines (Chrome, Safari, Edge, Opera) */
/* 1. Entire scrollbar structural properties */
::-webkit-scrollbar {
  width: 10px;                       /* Width of vertical scrollbars */
  height: 10px;                      /* Height of horizontal scrollbars */
}

/* 2. Track (background background beneath the bar) */
::-webkit-scrollbar-track {
  background: var(--background-color);
  border-radius: 4px;
}

/* 3. Thumb (draggable indicator handle) */
::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 4px;
}

/* 4. Thumb hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #dddddd;
}

@media (max-width: 500px) { 
    h1 {
        font-size: 8vw;
    }
    h2 {
        font-size: 6vw;
        line-height: 10vw;
    } 
    h3 {
        font-size: 4vw;
    }
    p {
        font-size: 3vw;
        line-height: 4vw;
    }
    .caption {
        font-size: 2vw;
    }

    #header > a {
        height: 25%;
        width: 25%;
    }
    .logo {
        width: 100%;
    }
    #nav-button {
        transition: opacity 0.5s ease-in-out 0s;
    }
    #nav-button.invisible {
        opacity: 0;
    }
    #nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        right: 0;
        width: 96vw;
        background-color: rgba(0, 0, 0, 0.75);
        gap: 5vw;
        padding: 2vw;
        transition: top 0.5s ease-in-out 0s;
        z-index: 100;
    }
    #nav-menu:not(.selected) {
        top: -500px;
    }
    #nav-menu.selected {
        top: 0;
    }
    #nav-menu text {
        font-weight: bold;
        font-size: 7vw;
    }
    .ext-links {
        gap: 3vw;
        padding: 0;
    }
    .icon {
        height: 12vw;
    }
    #body {
        margin-inline: 2.5%;
        width: 95%
    }
    .ext-links-footer {
        margin-top: 3vw;
        gap: 5vw;
    }
    .ext-links-footer .icon {
        height: 8vw;
    }
}