* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}
body {
    background: whitesmoke; 
    min-height: 100vh;
    min-width: 300px;
    margin: 1em;
}

.min-width {
    min-width: 100vh;
}
.sticky {
   position: fixed;
   bottom: 0;
   right: 0;
   font-family: Arial, Helvetica, sans-serif;
   text-align: left;
   font-size: 15px;
   font-weight: bolder;
   margin-bottom: 0px;
   margin-right: 5px;
   color:black;
}
.back {
    margin-top: 5rem;
    font-size: 40px;
    margin-bottom: 2rem;
}
.hide {
    display: none;
}
a {
    color: black;
    font-weight: 600;
    text-decoration: none;
}
a:visited {
    color: black;
}
a:hover {
    color:red;
    font-style: normal;
}

a img {
    height: 1em; /* This scales the image with respect to the font size of the parent container */
    vertical-align: middle; /* This aligns the image with the middle of the text */
    margin: 5px;
}
.folder {
    height: 120px;
    width: 120px;
    margin-bottom: -0.5rem;
}
.images-background {
    background-color: black;
}
span {
    font-weight: 600;
}
.space {
    margin: 1em 0;
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-wrapper {
    width: 60%; /* adjust this to make the video smaller or larger */
    padding-bottom: 50%; /* for 16:9 aspect ratio - change if your ratio is different */
    position: relative;
    margin: 20px auto; /* centers the video wrapper */
    overflow: hidden;
}
.video-wrapper2 {
    width: 80%; /* adjust this to make the video smaller or larger */
    padding-bottom: 56.25%; /* for 16:9 aspect ratio - change if your ratio is different */
    position: relative;
    margin: 0 auto; /* centers the video wrapper */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.two-videos-container {
    display: flex;
    justify-content: space-around; /* center and space the two videos */
    flex-wrap: wrap; /* enables the items to wrap as needed */
    margin-bottom: 1em; /* space between the two video rows */
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 80%;
        padding-bottom: 45%;
    }
}