@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

:root {
    --black: #141414;
    --white: #f2f2f2;
    --yellow: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', Arial, Helvetica, sans-serif;
    font-weight: 100;
    letter-spacing: 0.05rem;
    text-align: center;
    color: var(--white);
    background-color: var(--black);
}

.body {
    margin: 3em 0 0;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background-color: var(--black);
}

.content img {
    display: block;
    max-width: 100%;
    height: auto;
}

h2 {
    font-weight: 300;
}

.header-artist-link {
    color: var(--yellow);
    text-decoration: none;
}

.header-artist-link:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.choose-platform {
    margin: 3rem 0 1rem;
    font-weight: 200;
}

.button {
    background-color: var(--white);
}

.button:hover {
    opacity: 90%;
}

.footer {
    padding: 1rem 0;
    font-weight: 300;
}

.copyright {
    margin: 2em 0 1em;
    text-transform: uppercase;
    text-align: center;
}

/* Tablet and Desktop Styles */

@media (min-width: 880px) {}

/* Landscape mode styles */
@media (max-width: 879px) and (orientation: landscape) {}

/* Desktop 3 columns */
@media (min-width: 1024px) {}