* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    transform-style: preserve-3d;
    background: black;
    font-family: serif;
    overflow-y: scroll;
    overflow-x: hidden;
    perspective: 1px;
    height: 100%;
    margin: 0;
}

main {
    transform-style: inherit;
}

.banner {
    transform-style: inherit;
    position: relative;
    height: 100vh;
    width: 100vw;
}

.bannerBg {
    transform: translateZ(-1px) scale(2);
    transform-origin: center;
    filter: blur(10px);
    position: absolute;
    object-fit: cover;
    display: block;
    height: 100vh;
    width: 100vw;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.bannerImg {
    transform: translateX(-50%);
    position: absolute;
    max-width: 100vw;
    margin-left: 50%;
    display: block;
    height: 100vh;
    visibility: hidden;
    left: 0;
    top: 0;
}

.banner-title {
    transform: translate(-50%, -50%);
    font-family: 'Lemonada', arial;
    position: absolute;
    text-align: center;
    line-height: 1;
    color: white;
    width: 100%;
    margin: 0;
    left: 50%;
    top: 45%;
}

.banner-title h1 {
    text-shadow: 0 .1em .2em rgba(0, 0, 0, .7);
    font-size: 5em;
}

.banner-title h3 {
    text-shadow: 0 .1em .1em black;
    font-size: 2.5em;
}

.content-song {
    border-top: .2em solid white;
    font-family: arial;
    position: relative;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #222;
    padding: 2em 0;
    color: #EEE;
    background: url("/assets/opt-video-section.jpg") no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.content-song h1 {
    font-family: serif;
    margin-bottom: 2em;
    margin-top: 2em;
    font-size: 3em;
    color: white;
    text-shadow:
    -.04em .04em black,
    .04em -.04em black,
    .04em .04em black,
    -.04em -.04em black,
    -.07em .07em yellow;
}

.song-video iframe {
   width: 70vw;
   height: 30vw;
}

/* Song Platforms */
.songPlatforms {
    background: black;
    color: white;
    padding: 5em 0;
}

.platformsTitle {
    text-align: center;
    margin: 0 0 2em 0;
    font-size: 3em;
}

.songPlatformIcons {
    justify-content: space-around;
    display: flex;
}

.songPlatformIcons a {
    align-content: center;
    display: grid;
}

.songPlatformIcons img {
    width: 8vw;
}

.socials {
    background: url('/assets/opt-socialsBg.jpg');
    background-position: center;
    background-size: cover;
    align-content: center;
    position: relative;
    text-align: center;
    height: 100vh;
    padding: 4em;
}

.socials-title {
    text-shadow:
    -.02em .02em black,
    .02em -.02em black,
    -.02em -.02em black,
    .02em .02em black,
    -.05em .05em black;
    margin: 0 0 1em 0;
    margin-top: .5em;
    color: yellow;
    font-size: 5em;
}

.socials-wrapper {
    transform: translate(-50%, -50%);
    justify-content: space-around;
    align-items: center;
    position: absolute;
    display: flex;
    width: 100vw;
    left: 50%;
    top: 70%;
}

.socials-wrapper img {
    filter: drop-shadow(0 .4em .4em #000);
    cursor: pointer;
    width: 5em;
}  

@media only screen and (max-width: 1240px) {
    .songPlatforms {
        padding: 3em 0 2em 0;
    }

    .platformsTitle {
        margin: 0 0 1.5em 0;
        padding: 0 1em;
    }

    .songPlatformIcons {
        flex-wrap: wrap;
    }

    .songPlatformIcons img {
        margin: 25px 75px;
        width: 100px;
    }
}

@media only screen and (max-width: 755px) {
    .banner-title h1 {
        font-size: 4em;
    }
    
    .banner-title h3 {
        font-size: 1.75em;
    }
}

@media only screen and (max-width: 750px) {
    .socials-title {
        font-size: 4em;
    }

    .socials-wrapper {
        top: 60%;
    }

    .socials-wrapper img {
        width: 3.5em;
    }

    .content-song h1 {
        font-size: 2.5em;
        margin-top: 1em;
    }
}

@media only screen and (max-width: 550px) {
    .platformsTitle {
        font-size: 2em;
    }
}

@media only screen and (max-width: 470px) {
    .content-song h1 {
        margin-bottom: 1em;
        font-size: 2em;
    }

    .socials-title {
        font-size: 3.5em;
    }

    .socials-wrapper {
        flex-wrap: wrap;
        top: 50%;
    }

    .socials-wrapper img {
        margin: 25px;
        width: 3em;
    }

    .banner-title h1 {
        font-size: 3em;
    }
    
    .banner-title h3 {
        font-size: 1.25em;
    }
}

@media only screen and (max-width: 420px) {
    .platformsTitle {
        font-size: 1.75em;
    }
}