* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --White: hsl(0, 0%, 100%);
  --Light-gray: hsl(212, 45%, 89%);
  --Grayish-blue: hsl(220, 15%, 55%);
  --Dark-blue: hsl(218, 44%, 22%);
}
body {
  background-color: var(--Light-gray);
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1.25rem;
  height: calc(100vh - 1px);
}
.container {
  background-color: var(--White);
  padding: 15px;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
.container img {
  max-width: 100%;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}
.container h1 {
  text-align: center;
  color: var(--Dark-blue);
  margin-bottom: 1.25rem;
  font-size: 1.5em;
}
.container p {
  text-align: center;
  color: var(--Grayish-blue);
  margin-bottom: 1.25rem;
}
@media (min-width: 375px) {
  .container {
    width: 300px;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
  position: absolute;
  bottom: 0;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
