.video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100vw;
  min-height: 100vh;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20rem;
}

body {
  overflow: hidden;
}

.landingPageButton {
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: 0%;
  left: 50%;
}

.mute {
  position: fixed;
  transform: translate(-50%, -50%);
  bottom: 2%;
  right: 2%;
}

#volumeIcon {
  border: 2px solid brown;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 45px;
  height: 45px;
  background-color: aliceblue;
}

#landingPageButton {
  border: 2px solid brown;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: aliceblue;
  padding: 0.3rem 1rem;
  cursor: pointer;
  font-size: 4rem;
  font-weight: 700;
  transition: 1s;
}

#landingPageButton:hover {
  transform: translateY(-1rem);
  transition: 0.2s;
}
