body {
  margin: 0;
}

.landpage {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#landpage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}


/*.bymadre {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background-color: #21403e;
  color: white;

  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 1.03px;

  text-align: center;

  padding: 12px 0;
  z-index: 1000;
}*/



.button-5 {
  position: fixed;        /* sits above the background image */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;         /* above .landpage */

  background-clip: padding-box;
  background-color: #520000;
  border: 1px solid transparent;
  border-radius: .25rem;

font-size: 20px;           
min-height: 4rem;          
padding: calc(1.25rem - 1px) calc(2.5rem - 1px); 


  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #f6f6e9;
  cursor: pointer;
  display: inline-flex;
  font-family: "Times New Roman", serif;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-5:hover,
.button-5:focus {
  background-color: #3c0000;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translate(-50%, calc(-50% - 1px)); /* preserve centering on hover */
}

.button-5:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translate(-50%, -50%);             /* preserve centering on active */
}

/* Tablet */
@media (max-width: 768px) {
  .button-5 {
    font-size: 17px;
    min-height: 3.5rem;
    padding: calc(1rem - 1px) calc(2rem - 1px);
    top: 15%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .button-5 {
    font-size: 15px;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    top: 15%;
    width: 80vw;          /* stretches button to 80% of screen width */
    justify-content: center;
  }
}
