:root {
  --white: hsl(0 0 100);
  --slate300: hsl(212 45 89);
  --slate500: hsl(216 15 48);
  --slate900: hsl(218 44 22);
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-size: 16px;
  font-family: Outfit;
  background-color: var(--slate300);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40rem 20rem;
}
.container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 2rem;
  width: 30rem;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
img {
  border-radius: 2rem;
  width: 100%;
}
p {
  font-size: 15px;
  text-align: center;
}
.b {
  font-weight: bold;
  font-size: 20px;
}