@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
html,
body {
    width: 100%;
    height: 100%;
    background-image: url('assets/ql_header_background_sm.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
}

.header{
    padding-top: 2rem;
    color: white;
    text-align: center;
}

h2{
    font-weight: 400;
}

.logo{
    background-image: url(assets/uz_2018.png);
    height: 64px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#videoContainer {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.d-none {
   display: none;
}

#footer {
    height: 8vh;
    position: absolute;
    bottom: 5vh;
    width: 100%;
    background-color: transparent;
    align-items: center;
    text-align: -webkit-center;
    display: grid;
    grid-template-rows: auto auto;
    -ms-grid-rows: auto auto;
    grid-template-columns: auto auto auto;
    -ms-grid-columns: auto auto auto;
    grid-template-areas: "s s s" "f y h";
    grid-gap: .5rem;
}

a {
    text-decoration: none;
    color: white;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
}

.szavazz>span {
    padding: .5rem 1.5rem;
    white-space: nowrap;
    border: 2px solid white;
    background-color: transparent;
}

.szavazz {
    grid-area: s;
    width: 100%;
}

.facebook {
    grid-area: f;
    background-image: url('assets/facebook.svg');
}

.youtube {
    grid-area: y;
    background-image: url('assets/youtube.svg');
}

.introVid {
    grid-area: h;
    background-image: url('assets/play-arrow.svg');
    height: 32px;
    width: 32px;
}

.introVidClose {
    grid-area: h;
    background-image: url('assets/stop-button.svg');
    height: 32px;
    width: 32px;
}

@media only screen and (max-height: 769px) {
    #footer {
        bottom: 12vh;
    }
    .logo{
        height: 64px !important;
    }
}

@media only screen and (min-width: 576px) {
    html,
    body {
        background-image: url('assets/ql_header_background.jpg');
        background-position: top;
    }
    .logo{
        height: 120px;
    }
    #footer {
        grid-template-columns: 5% 5% auto 5% 5%;
        -ms-grid-columns: 5% 5% auto 5% 5%;
        grid-template-areas: "f y s p h";
    }
    .szavazz>span {
        padding: 1rem 3rem;
        border: 2px solid white;
    }
}