body, html {
  margin: 0;
  padding: 0;
  background-color: black;
  height: 100%;
  overflow: hidden;
}

/* This is for the Landing (Index) Page. */
.lndgbackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 0;
}

.rhccpicture{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 2.75s forwards;
}
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }