body {
  background-color: hsl(47, 88%, 63%);
  display: grid;
  align-content: space-between;
}

.container {
  text-align: center;
}

header h1 {
  margin-bottom: 0;
}

header p {
  font-size: 1.5rem;
  margin: 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  max-width: 1000px;
  margin-inline: auto;
}

.solution {
  width: calc(300px - 2rem);
  padding: 1rem;
  text-align: center;
  background-color: white;
  border-radius: 1rem;
  box-shadow: .25rem .25rem .25rem black;
}

.solution img {
  width: 100%;
  height: 175px;
  margin-inline: auto;
  border-radius: .5rem;
  object-fit: cover;
}

.solution h2 {
  margin: 0;
  margin-top: .5rem;
}

.solution a {
  color: black;
  text-decoration: none;
}

.solution a:hover,
.solution a:focus-visible {
  color: gray;
  text-decoration: underline;
  text-decoration-style: double;
  text-decoration-thickness: 1px;
}

.solution p {
  margin-top: .25rem;
  margin-bottom: 0;
}