html, body {
  margin: 0;
  padding: 0;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 80%;  /* wilmer cortez, digital artist */
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 30%;
  height: auto;
}

@media (max-width: 768px) {
  .overlay {
  width: 70%;
  height: auto;
  }
}

/* @media screen and (max-width: 480px), (max-width: 768px)*/