html {
  height: 100%;
}

body {
  font-family: "futura-pt", sans-serif;
  height: calc(100% - 20px);
  margin: 10px;
  background: white;
}

.wrapper {
  background: red;
  display: grid;
  place-items: center;
  height: calc(100% - 20px);
  border-radius: 10px;
  padding: 10px;
  transform-style: preserve-3d;
}

.container {
  border-radius: 100%;
  background: #fddfc4;
  border: 10px solid #ee6a4d;
  color: #671f43;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 3rem;
  text-align: center;
  animation: spin 2s ease-in-out forwards;
}

h1 {
  font-weight: 300;
  padding-bottom: 1rem;
  position: relative;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h1::after {
  content: "";
  position: absolute;
  width: 50%;
  margin-inline: auto;
  inset: auto 0 0;
  border: 1px solid #f9caa6;
}

p {
  font-weight: 500;
  padding-top: 1rem;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: scale(.8) rotateZ(30deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
  }
}
