body, 
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #000;
    font-size: 14px;
}

.flex {
    z-index: 1;
    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
}

.flex > div {
    width: 100%;
}


#logo {
    margin: 0 auto;
    padding: 0;
    max-width: 60vw;
    padding: 80px;
}

#logo svg {
    fill: #ffffff;
    width: 100%;
}


.embed {
    position: relative;
    margin: 0 auto;
    max-width: 1264px;
    flex-wrap: wrap;
    display: flex;
    padding: 1rem;
}

iframe {
    /*float: left;*/
    padding: 8px;
    display: block;
    -webkit-filter: invert(1);
    filter: invert(1);
    border: 0;
}

#contacts {
    width: 100%;
    clear: both;
}

ul.social-media-list {
    padding: 0;
    margin: 0;
}

ul.social-media-list li {
    display: inline-block;
    padding: 10px 4px;
}

ul.social-media-list li a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

ul.social-media-list li a:after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 45px;
    transition: all .2s ease-in-out;
}

ul.social-media-list li a:hover:after  {
    transform: scale(1.1);
}

ul.social-media-list li a.soundcloud:after {
    background: url("assets/icon_soundcloud.svg") no-repeat top right;
}

ul.social-media-list li a.facebook:after {
    background: url("assets/icon_facebook.svg") no-repeat top right;
}

ul.social-media-list li a.instagram:after {
    background: url("assets/icon_instagram.svg") no-repeat top right;
}

ul.social-media-list li a.youtube:after {
    background: url("assets/icon_youtube.svg") no-repeat top right;
}

ul.social-media-list li a.email:after {
    background: url("assets/icon_email.svg") no-repeat top right;
}


@media screen and (max-width: 1280px) {

    .embed {
        max-width: 632px;
    }
}

@media screen and (max-width: 767px) {

    #logo {
        padding: 20px;
    }

    .embed-container {
        bottom: 30vh;
    }

    .embed {
        max-width: 100%;
    }

    iframe {
        width: 100%;
    }
}

@media screen and (max-width: 399px) {
    
/*    .flex {
        justify-content: space-evenly;
    }

    .embed {
        display: none;
    }*/

    iframe {
        max-width: 94%;
    }

    ul.social-media-list li a:after {
        width: 40px;
        height: 40px;
    }

}