:root {
  --color-white: hsl(0, 0%, 100%);
  --color-slate-300: hsl(212, 45%, 89%);
  --color-slate-500: hsl(216, 15%, 48%);
  --color-slate-900: hsl(218, 44%, 22%);

  font-family: "Outfit", sans-serif;
  text-align: center;
}

body {
  background-color: var(--color-slate-300);
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
}

main {
  background-color: var(--color-white);
  width: 30%;
  max-width: 18em;
  height: auto;
  flex-direction: column;
  border-radius: 0.8em;
  padding: 1em;
}

img {
  width: 100%;
  border-radius: 0.8em;
}

h1 {
  font-size: 1.4em;
  color: var(--color-slate-900);
}
p {
  color: var(--color-slate-500);
}

.attribution {
  margin: 2%;
  align-content: center;
}

@media screen and (max-width: 700px) {
  main {
    width: 90%;
    max-width: 24em;
  }

  h1 {
    font-size: 1.9em;
  }
  p {
    font-size: 1.3em;
  }
}
