html, body {
    height: 100%;
    margin: 0;
  }
  
  .stage {
    min-height: 100%;
    display: grid;
    place-items: center;
    background: black;
    box-sizing: border-box;
    padding: 24px;
    background-image: 
        linear-gradient(to bottom, rgba(236, 231, 217, 0.5) 0%, rgba(202,198,186,0) 30%),
        url(images/landing-background.jpg);
    background-size: contain;
    font-family: 'Unifont';
    font-weight: 100;
  }

  .stage p, a {
    color: black;
    margin-top: -20px;
    text-align: center;
  }

  @font-face {
    font-family: 'Unifont';
    src: url('unifont-16.0.04.otf') format('opentype');
}
  
  .centered-image {
    width: 716.8px;
    height: 479.5px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    object-fit: contain;
    display: block;
    user-select: none;
  }

  .stamp-frame {
    border: 60px solid transparent;
    border-image-source: url('images/landing-border.png');
    border-image-slice: 60;
    border-image-repeat: repeat;
}

.centered-image.angel {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    margin-top: 20px;
}