* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font: 1rem/1.5 system-ui, sans-serif;
  overflow: hidden;
  text-align: center;
  height: 100vh;
  padding: 0;
  margin: 0;
  color: #f5e4df;
  background: black;
}

header {
  margin-top: 10vw;
}

h1,
h2 {
  margin: 0 0 0.25rem 0;
  -webkit-animation: hey 3s backwards;
          animation: hey 3s backwards;
}

h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e4b699;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes hey {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes hey {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
img {
  position: absolute;
  bottom: 0;
  max-width: 80%;
  max-height: 80vh;
  height: auto;
  -webkit-animation: peace 6s forwards;
          animation: peace 6s forwards;
}

@-webkit-keyframes peace {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(10%);
  }
}

@keyframes peace {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(10%);
  }
}