/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main styles */
body {
  font-family: 'Outfit', sans-serif;
  background-color: hsl(212, 45%, 89%); /* Slate 300 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: hsl(0, 0%, 100%); /* White */
  border-radius: 1.25rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.card-content {
  padding: 0 1rem 1.5rem;
}

.card h2 {
  color: hsl(218, 44%, 22%); /* Slate 900 */
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.card p {
  color: hsl(216, 15%, 48%); /* Slate 500 */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

footer {
  margin-top: auto;
}

/* Media queries for responsiveness */
@media (max-width: 375px) {
  .card {
    max-width: 290px;
  }

  .card h2 {
    font-size: 1.25rem;
  }
}
