body {
    box-sizing: border-box;
    text-align: center;
}

img.background {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(50%);
    object-fit: cover;
    z-index: -10;
    top: 0;
    left: 0;
}

header {
    margin-bottom: 40px;
}

main {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

main > span {
    flex-grow: 1;
    flex-basis: 100%;
}

span.cover {
    display: block;
    text-align: center;
}

span.cover img {
    width: 50%;
    box-shadow: 8px 8px 20px 0 black;
    margin-bottom: 10px;
}

span.buttons {
    margin-top: 20px;
}

a.button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-bottom: 20px;
    border: 2px solid white;
    width: 85%;
    max-width: 450px;
    height: 60px;
    border-radius: 30px;
    text-decoration: none;
}

@media (min-width: 992px) {
    main {
        flex-wrap: nowrap;
        height: 70vh;
    }
    main > span {
        flex-basis: 35%;
        flex-grow: 0;
    }
    span.buttons {
        margin-top: 0;
    }
    span.cover img {
        width: 90%;
        max-width: 450px;
    }

}


/* ***** social name label ***** */
a.button img {
    max-height: 28px;
    max-width: 175px;
    object-fit: contain;
    box-sizing: border-box;
}
a.b-youtube img { content: url("/images/youtube-label.png") }
a.b-spotify img { content: url("/images/spotify-label.png") }
a.b-soundcloud img { content: url("/images/soundcloud-label.png") }
a.b-metrica img {
    content: url("/images/metricaplayer-label.png");
    padding: 0 2px;
    max-width: 150px;
}
a.b-freedownload label {
    text-transform: uppercase;
    font-weight: 800;
    font-family: Roboto, sans-serif;
    color: white;
    font-size: x-large;
    padding-right: 4px;
}

/* ***** social icon ***** */
a.button i {
    height: 40px;
    width: 40px;
    background-image: url('/images/social-icons.png');
    background-repeat: no-repeat;
    background-size: 248px 248px;
}
a.b-metrica i { background-position: -52px -156px }
a.b-soundcloud i { background-position: -156px -156px }
a.b-youtube i { background-position: -208px 0px }
a.b-instagram i { background-position: -156px 0px; }
a.b-spotify i { background-position: -208px -156px }
a.b-freedownload i { background-position: -52px -104px }

img.coming-soon-banner {
    max-height: none!important;
    height: 56px!important;
    position: absolute;
    content: url("/images/soon.png")!important;
}
