html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    text-transform: lowercase;
    font-family: "Source Code Pro";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    cursor: crosshair;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    height: 5em;
    width: 100%;
}

.navbar a {
    display: flex;
    align-items: center;
    margin: 0.2em 1em;
    text-decoration: none;
    font-size: 0.65em;
    color: black;
    white-space: nowrap;
}

.navbar li {
    align-items: center;
    margin-left: 1.3em;
    margin-right: 1.3em;
    position: relative;
}

.navbar li.current-nav::after {
    content: '';
    position: absolute;
    pointer-events: none;
    --s: 0.5em;
    --t: 0.1em;
    --g: 0.1em;
    inset: calc(-1 * (var(--g) + var(--t)));
    border: var(--t) solid black;
    mask:
        conic-gradient(at var(--s) var(--s),#0000 75%,#000 0)
        0 0/calc(100% - var(--s)) calc(100% - var(--s)),
        linear-gradient(#000 0 0) content-box;
}

.navbar a:hover {
    background: black;
    color: white;
    cursor: cell;
}

main {
    flex: 1 0 auto;
    flex-flow: row wrap;
    padding: 1.0em;
    margin-top: 5em;
    padding-bottom: 4em
}

.title-bar {
    padding: 0 0 1em;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 3.5em;
}

.title-container {
    display: inline-block;
    align-items: flex-start;
    position: relative;
    margin-left: -0.2em;
}

.barcode {
    height: 100%;
    width: 33%;
    margin-left: 1em;
}

@media (max-width: 480px) {
    .barcode {
        visibility: hidden;
    }
}

.title {
    display: inline-block;
    font-size: 3.5em;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
}

.about {
    animation: typing 0.7s steps(5, end);
}

.albums {
    animation: typing 0.7s steps(6, end);
}

.concertst {
    animation: typing 0.7s steps(8, end);
}

.info {
    animation: typing 0.7s steps(4, end);
}

.typing-cursor {
    position: absolute;
    content: '';
    display: inline-block;
    width: 0.30em;
    height: 3em; 
    background: black;
    top: 0.65em;
    right: -1.5em;
    animation: cursor-blink 1.3s step-end infinite;
    animation-delay: 0.7s;
    opacity: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes cursor-blink {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

.content {
    height: calc(100% - 3.5em);
    display: flex;
    justify-content: space-between;
}

.albums-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100% - 3.5em);
    row-gap: 1vw;
    column-gap: 15vw;
}

.album-art {
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center; 
    background-size: 85%;
    height: 12vw;
    aspect-ratio: 1/1;
    --s: 2vw;
    --t: 0.3vw;
    --g: 0.7vw;
    padding: calc(var(--g) + var(--t));
    outline: var(--t) solid black;
    outline-offset: calc(-1*var(--t));
    mask:
      conic-gradient(at var(--s) var(--s),#0000 75%,#000 0)
      0 0/calc(100% - var(--s)) calc(100% - var(--s)),
      linear-gradient(#000 0 0) content-box;
    transition: .4s;
}

.album-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-art h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 400;
    font-size: 0.8vw;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.glow {
    background-image: url("../img/album-art/the-glow-pt2.jpg");
}

.ants {
    background-image: url("../img/album-art/ants.jpg");
}

.bird {
    background-image: url("../img/album-art/volcanic-bird-enemy.jpg");
}

.haunt {
    background-image: url("../img/album-art/haunt.jpg");
}

.ecailles {
    background-image: url("../img/album-art/ecailles.jpg");
}

.deathcon {
    background-image: url("../img/album-art/deathconsciousness.jpg");
}

.vespertine {
    background-image: url("../img/album-art/vespertine.jpg");
}

.sadness {
    background-image: url("../img/album-art/sadness.jpg");
}

.brat {
    background-image: url("../img/album-art/brat.jpg");
}

.phoenix {
    background-image: url("../img/album-art/phoenix.jpg");
}

.album-art:hover {
    outline-offset: calc(var(--g)/-1);
    cursor: cell;
}

.album-art:hover::before,
.album-art:hover h2 {
    opacity: 1;
}

.albums-content a:focus {
    outline: none;
}

.title2 {
    display: inline-block;
    font-size: 1.75em;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
}

@media (max-width: 700px) {
    .title2 {
        font-size: 3vw;
    }
}

.cover-container {
    position: relative;
    padding: 0 0 2vw 2vw;
}

.cover-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2vw;
    height: 2vw;
    border-left: 0.42vw solid black;
    border-bottom: 0.42vw solid black;
}

.cover-container img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 60%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

article {
    text-align: justify;
    text-justify: auto;
    font-size: 0.8em;
}

p {
    padding: 0;
}

p a {
    text-decoration: underline;
    color: black;
}

p a:hover {
    color: white;
    background-color:black;
    cursor: cell;
}

b {
    font-weight: 600;
}

.left-container { 
    width: 33%;
    height: 100%;
}

.right-container {
    display: flex;
    width: 33%;
    height: calc(100% - 1.5vw);
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.right-container * {
    font-size: 1em;
}

.selfie {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 30vw;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    background-color: white;
}

footer > * {
    display: block;
    max-height: 3.5em;
    height: auto;
    width: auto;
    margin: 0;
    box-sizing: border-box;
}

.landing-xx > * {
    display: block;
    position: fixed;
    max-height: 3.5em;
    height: auto;
    width: auto;
    margin: 0;
    box-sizing: border-box;
}

.footer-middle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clock {
    text-align: center;
    font-size: 0.6em;
	color: #848484;
    margin: 0 auto;
}

#scroll-indicator {
    position: absolute;
    font-size: 1.85em;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: floatUpDown 1.5s infinite ease-in-out;
}

@keyframes floatUpDown {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
    100% { transform: translateX(-50%) translateY(0); }
}

.concerts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.concerts a {
    text-decoration: none;
}

.concerts h3 {
    padding: 0;
    margin: 0;
    font-weight: 400;
    color: black;
}

.concerts p {
    padding: 0;
    margin: 0;
    color: #848484;
}

.concerts li {
    margin-bottom: 4vh;
}

.concerts li:hover {
    background-color:black;
}

.concerts li:hover * {
    color: white;
    cursor: cell;
}

@media (max-width: 768px) {
    .left-container,
    .right-container {
        width: 48%;
    }
    .right-container {
        align-items: flex-end;
    }
}

.selector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item {
    position: absolute;
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.item p {
    margin: 0;
    padding-left: 0.4vw;
    padding-right: 0.4vw;
    font-size: clamp(12px, 2vw, 21px);
    font-weight: 500;
    color: black;
    text-align: right;
    white-space: nowrap;
}

.vinyl {
    position: fixed;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    pointer-events: none;
}

.vinyl img {
    height: 120vh;
    width: auto;
}

.index-title {
    position: fixed;
    width: 42vw;
    height: auto;
    top: 50%;
    left: 6vw;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2vw;
    height: 2vw;
    border-top: 0.4vw solid black;
    border-left: 0.4vw solid black;
}

.index-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2vw;
    height: 2vw;
    border-bottom: 0.4vw solid black;
    border-right: 0.4vw solid black;
  }

.index-title h1 {
    padding: 3vw;
    font-size: 3vw;
    font-weight: 500;
}

@media (max-width: 1250px) {
    .index-title {
        width: 20vw;
    }
}

@media (max-width: 768px) {
    .index-title {
        top: 40%;
    }
    .index-title::before {
        border-top: 0.7vw solid black;
        border-left: 0.7vw solid black;
    }
    .index-title::after {
        border-bottom: 0.7vw solid black;
        border-right: 0.7vw solid black;
    }
}

.concert-img {
    width: 33%;
    height: calc(100% - 5vw);
    overflow: hidden;
    position: relative;
}

.concert-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: none;
    position: absolute;
    object-fit: contain;
}

@media (max-width: 950px) {
    .concert-img img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }
}

.concert-img img.visible {
    display: block;
}

.qr-container {
    display: flex;
}

.qr-container p {
    margin: 0;
}

.qr-container img {
    width: auto;
    height: auto;
    margin: 0 0 0 14vw;
}

.bratbg {
    background-color: #8ACE00;
}

.infobox {
    margin-top: 1vw;
}

video {
    max-height: 70vh;
    max-width: 100%;
    width: auto;
}

.crosshair {
    max-height: 2vw;
    aspect-ratio: 1/1;
    padding-top: 25vw;
}

.crosshair-squares {
    max-height: 2vw;
    aspect-ratio: 1/1;
    padding-top: 6vw;
}

.mobile-nav {
    display: none;
    list-style: none;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    top: 60%;
    left: 50%;
    padding: 0;
    transform: translateX(-50%);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1em;
    color: black;
    white-space: nowrap;
}

.mobile-nav li {
    align-items: center;
    position: relative;
}

.mobile-nav a:hover {
    background: black;
    color: white;
    cursor: cell;
}

@media (max-width: 768px) {
    
    .vinyl {
        display: none !important;
    }
    
    .selector {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .index-title {
        width: 80%;
        left: 10%;
    }
    
    .index-title h1 {
        font-size: 6vw;
        text-align: center;
    }
}

