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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: hsl(212, 45%, 89%);
  font-family: "Outfit", Arial, sans-serif;
}

.center {
  width: 100%;
  max-width: 320px;
}

article {
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

article img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

article h1 {
  color: hsl(218, 44%, 22%);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

article p {
  color: hsl(216, 15%, 48%);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 10px;
  margin-bottom: 20px;
}
