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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #d6e2f0;
    color: hsl(228, 45%, 44%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.9375em;
    margin-bottom: 1.25em;
}

.card-content {
  padding: 5px;
}

.card-content .content-title p {
    font-size: 1.25em;
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    margin-bottom: 1em;
}

.card-content .content-text p {
    font-size: 0.9375em;
    color: hsl(220, 15%, 55%);
    margin-bottom: 0.625em;
    font-weight: 400;
}

.card {
  width: 90%;
  padding: 0.625em;
  background-color: #fff;
  border-radius: 1.25em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 1.25em;
  width: 300px;
  text-align: center;
  margin-bottom: 1.875em;
}

@media (min-width: 23.4375em) {
  .card {
    width: 300px;
    padding: 1.25em;
  }
  .card img {
    width: 100%;
    height: auto;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}

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