
/* PAGE HEADER  */
.page-header {
    margin: 50px;
    margin-top: 50px;
    font-size: 3vw;
    color: gray;
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
    text-decoration-color:goldenrod;
}

html, body {
    height: 100%;
}
html {
    scroll-behavior: smooth;
  }
  
.footer {
    flex-shrink: 0;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.video {
    margin-top: 10px;
    width: 42.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.video-header {
    justify-content: center;
    text-align: center;
    margin : 10px 0 10px 0;
    font-size: 2vw;
    height: 20%;
    color: slategray;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;

}
.video-link {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;

}
.video-link iframe {
    position: absolute;
    width: 100%;
    height: 100%;

}
@media only screen and (max-width: 600px) {
    iframe {
      width: 100%;
    }
    .video-container {
    flex-direction: column;
    }
    .video {
        width: 100%;
    }
    .video-header {
        font-size: 6vw;
    }
}

@media screen and (max-width: 750px) {
    .page-header {
        font-size: 6vw;
        margin: 0px;
        margin-top: 70px;
    }
}

