@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

      .attribution {
        position: absolute;
        bottom: 0;
        font-size: 1rem;
        text-align: center;
      }

      .attribution a {
         color: hsl(228, 45%, 44%);
         }

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

body {
  background-color: hsl(212, 45%, 89%);
  font-family: outfit, sans-serif;
  font-size: 0.9rem;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

img {
border-radius: 0.675rem;
display: block;
max-width: 100%;
}

main {
   background-color: hsl(0, 0%, 100%);
  max-width: 20rem;
  padding: 1.075rem;
  border-radius: 1.3rem;
  box-shadow: 0 1.6rem 1.6rem hsla(0, 0%, 0%, 0.05);
  text-align: center;
  margin: 1.75rem;

}

h1 {
  font-size: 1.375rem;
  line-height: 1.275;
  margin-top: 1.1em;
  color: hsl(218, 44%, 22%);
}

p {
  line-height: 1.3;
  color: hsl(220, 15%, 55%);
  margin: 1.075em
}