* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffdffa;
  font-family: "Pompiere", sans-serif;
  height: 100dvh;
}

main {
  width: 100%;
  height: 100dvh;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

section {
  display: grid;
  place-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

article {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

img {
  aspect-ratio: 1/1;
  width: 150px;
  height: auto;
}

h1 {
  font-size: 1.875rem;
}

p,
a {
  font-size: 1rem;
  text-wrap: balance;
}

@supports (text-wrap: pretty) {
  p {
    text-wrap: pretty;
  }
}

a {
  background-color: #e8cfff;
  text-decoration: none;
  color: #000;
  padding: .8rem;
  width: max-content;
  border-radius: 10px;
  transition: opacity .15s ease;

  &:hover {
    opacity: .8;
  }
}

div {
  position: relative;
  display: grid;
  place-items: center;
}

div>svg {
  position: absolute;
  right: -1.5rem;
  bottom: -1rem;
}
