/* - - - - - - - - - - FONTS - - - - - - - - - - */
@font-face {
    font-family: 'kado_kakuregular';
    src: url('kadok___-webfont.woff2') format('woff2'),
         url('kadok___-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* - - - - - - - - - - RESET - - - - - - - - - - */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* - - - - - - - - - - BACKGROUND - - - - - - - - - - */
/*
    Fixed pseudo-element on body: always exactly viewport-sized,
    so background-size: cover has nothing ambiguous to calculate.
*/
html {
    background-color: #121617;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("../../images/clocolan-emptying-sun-sky.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* - - - - - - - - - - BASE - - - - - - - - - - */
html, body {
    min-height: 100vh;
}

body {
    font-family: "kado_kakuregular", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
}

/* - - - - - - - - - - LAYOUT - - - - - - - - - - */
#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26vh 20px 60px;
    gap: 24px;
}

/* - - - - - - - - - - BANDCAMP PLAYER - - - - - - - - - - */
.bc-player {
    display: block;
    border: 0;
    width: 100%;
    max-width: 500px;
    height: 120px;
}

@media screen and (max-width: 39.99em) { /*SMALL*/
    #content {
        padding: 18vh 20px 60px;
    }
	.bc-player {
		max-width: 100%;
	}
}

@media screen and (max-width: 63.99em) and (min-width: 40em) { /*MEDIUM*/
	.bc-player {
		max-width: 80%;
	}
}

/* - - - - - - - - - - BUY LINKS - - - - - - - - - - */
.buy-links {
    text-align: center;
    margin-top: 20px;
}

.buy-links h4, .buy-links a {
    font-family: "kado_kakuregular", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 1.5rem !important;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 1px 2px 3px rgba(37,43,45,0.6);
}

.buy-links p {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 20px;
    margin: 20px auto 8px auto;
}

.buy-links img {
    vertical-align: middle;
}

/* - - - - - - - - - - COPYRIGHT - - - - - - - - - - */
#copyright {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "kado_kakuregular", "Helvetica", sans-serif;
    font-size: 0.75rem;
    color: #B2B2A9;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 50;
}