
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700);

html, body {
    height: 100%;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

footer {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px; 
}

.footerTekst {
    font-family: 'Lato', sans-serif;
    color: #3e848a
}

.headerLogo {
    height: 7vh;
}

.videoContainer {
    background-color: white;
    position: relative;
    padding: 0px;
}

#video {
    border: 1px solid black;
    height: 40vh;
}

.videoOverlayDiv {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: black;
    padding: 5px;
    font-weight: bold;
    font-size: large;
    text-align: center;
}

@media (max-width: 767px) {
    .hidden-mobile {
      display: none;
    }
}