@font-face {
    font-family: 'Impact';
    src: url('/fonts/unicode.impact.woff2') format('woff2'),
        url('/fonts/unicode.impact.woff') format('woff'),
        url('/fonts/unicode.impact.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Share Tech Mono';
    src: url('/fonts/ShareTechMono-Regular.woff2') format('woff2'),
        url('/fonts/ShareTechMono-Regular.woff') format('woff'),
        url('/fonts/ShareTechMono-Regular.ttf') format('truetype');
    font-display: swap;
}

.cover {
    height: 30dvh;
    width: 30dvh;
    margin: 1dvh 0 1dvh 0;
}

figure:hover {
    cursor: pointer;
}

h1 {
    font-family: Impact;
    font-weight: bold;
    font-size: 8.5dvh;
    justify-self: center;
    letter-spacing: 2dvh;
}

.title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
}

h1:hover,
.soundcloud:hover,
.audius:hover {
    color: #505050;
    cursor: default;
    cursor: pointer;
}

.upper {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: end;
}

.lower {
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: start;
}

body {
    font-family: Share Tech Mono;
    background-color: #0C0C0C;
}

body {
    overflow-y: hidden;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, minmax(800px, 46dvw));
    grid-template-rows: 2fr 1fr 2fr;
    margin-left: 2dvw;
    width: max-content;
    height: 100vh;
}

figcaption {
    color: #3E3E3E;
    font-size: 2dvh;
    text-align: start;
    display: flex;
    justify-content: space-between;
}

figure:hover figcaption {
    color: #fafafa;
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.title {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #828282;
}

.soundcloud {
    height: 4dvh;
    width: auto;
    margin-left: 1dvw;
}

.audius {
    height: 4dvh;
    width: auto;
    margin-left: 1dvw;
}

.links {
    display: flex;
    flex-direction: column;
    position: static;
}

.links a {
    color: inherit;
}

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

a:visited,
a:focus,
a:active {
    color: inherit;
    outline: none;
}

.item {
    opacity: 0;
    transition: opacity 1s ease;
}

.item.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(3, 400px);
    }

    html,
    body {
        overflow-y: hidden;
    }

    .title-content {
        flex-direction: column;
    }

    .links {
        flex-direction: row;
        justify-content: center;
    }

    h1 {
        margin-right: -2dvh;
        font-size: 7dvh;
    }

    .soundcloud {
        height: 6dvh;
        margin-left: 1dvw;
    }

    .audius {
        height: 6dvh;
        margin-left: 1dvw;
    }

    figcaption {
        color: #fafafa;
        font-size: 2dvh;
        text-align: start;
    }

    .cover {
        height: 26dvh;
        width: 26dvh;
    }

}