@font-face {
    font-family: "Unifont Ex Mono";
    src:
        local("Unifont Ex Mono"),
        url("font/UnifontExMono.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Better VCR";
    src:
        local("Better VCR"),
        url("font/Better VCR.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Alkhemikal";
    src:
        local("Alkhemikal"),
        url("font/Alkhemikal.woff") format("woff");
    font-display: swap;
}

.hidden {
    display: none;
}

#loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transition: opacity .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spinner {
    border: 12px solid #353535;
    border-top: 12px solid #6e34db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: underline solid currentColor 2px;
}

.front-grid a:hover,
.album-grid a:hover {
    text-decoration: none;
}

div[mx-name="view-image-info"] {
    display: none !important;
}

h1.artist-name {
    font-size: clamp(80px, 6.25vw, 160px);
    /*120px*/
}

h1 {
    font-size: clamp(40px, 3.125vw, 80px);
    /*60px*/
}

h2 {
    font-size: clamp(31px, 2.4vw, 61px);
    /*46px*/
}

h3 {
    font-size: clamp(28px, 2.1875vw, 56px);
    /*42px*/
}

h4 {
    font-size: clamp(23px, 1.77vw, 45px);
    /*34px*/
}

h5 {
    font-size: clamp(12px, 0.9375vw, 24px);
    /*18px*/
}

p {
    font-size: clamp(10px, 0.833vw, 21px);
    /*16px*/
}

h6 {
    font-size: clamp(9px, 0.625vw, 16px);
    /*12px*/
}

body {
    margin: 0;
    background-color: rgb(18, 18, 18);
}

div[mx-name="view-image-info"] {
    display: none !important;
}

p,
h6,
h5 {
    margin-top: 0px;
    font-family: "Unifont Ex Mono", sans-serif;
    font-weight: 400;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.9);
}

button h1,
button h2,
button h3,
button h4,
button h5,
button h6,
button p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Unifont Ex Mono", sans-serif;
    font-weight: 800;
    margin: 0;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 3px white;
}

button p {
    margin-bottom: 0px;
    font-weight: bold;
}

.lyrics p {
    font-size: clamp(15px, 1.15vw, 29px);
    color: whitesmoke;
    margin-bottom: 5px;
    /*20px*/
}

.lyrics art {
    font-size: clamp(17px, 1.3vw, 33px);
    /*25px*/
    font-family: "Alkhemikal", sans-serif;
    color: white;
}

.fixe .artist-name {
    font-size: clamp(17px, 1.3vw, 33px);
    /*25px*/
    margin: 0;
    color: white;
}

.glass art {
    font-size: clamp(17px, 1.3vw, 33px);
    /*25px*/
    font-family: "Alkhemikal", sans-serif;
    color: white;
}

.section {
    margin-bottom: 0px;
    padding: 2%;
    position: relative;
    z-index: 0;
}

.section::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.0) 15%,
            rgba(0, 0, 0, 0.0) 85%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
    height: 100vh;
}

.max-width {
    min-width: 1280px;
    max-width: 2560px;
    margin: auto;
}

.h-stack {
    display: flex;
    flex-direction: row;
    gap: 10px;
    min-width: 0;
}

.v-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

hr {
    border-style: solid;
    margin-bottom: 15px;
    margin-top: 15px;
}

select {
    font-family: "Unifont Ex Mono", sans-serif;
    font-size: 18px;
}

option {
    color: black;
}