* {
  box-sizing: border-box;
}

header {
  height: 20px;
}

body {
  margin: 0;
  font-family: 'impact regular';
  font-size: 17px;
}

#myVideo {
  position: fixed;
  z-index: -1; /* Stay on bottom */
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  filter: grayscale(100%);
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 5px;
}

#myBtn {
  width: 100px;
  font-size: 8px;
  padding: 10px;
  border: none;
  background: #000000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}
/* Style the footer */
footer {
  background-color: #e4e4e4;
  opacity: 0.1;
  padding: 0px;
  font-size: 10px;
  text-align: center;
  color: white;
  position: bottom;
}

/* The sidepanel menu */
.sidepanel {
  height: 250px; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #373737; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 30px; /* Place content 60px from the top */
  transition: 0.3s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) this needs to be edited to move it below SD logo */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 36px;
  margin-left: 20px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  position: absolute;
  top: 8px;
  font-size: 20px;
  cursor: pointer;
  background-color: #2e2e2e;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #ffffff;
}

.SDlogo {
    position: absolute;
    z-index: 1; /* Stay on top */
    width: 15%;
    min-width: 72px;
    height: 30px;/*doens't appear to be changing? */
    top: 8px;
    right: 16px;
    padding-left: 0px;
    padding-top: 5px;
    object-fit: cover;
} 

.album {
 display: flex;
 justify-content: center;
 align-items: center;
 height: 700px;
 padding-top: 5px;
 margin-top: 5px;
 border: 0px solid rgb(255, 255, 255);
 min-width: 390px;
 height: auto;
 object-fit: contain;
}

img {
  width: 50%;
}