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

body {
  background-color: hsl(212, 45%, 89%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container {
  width: 300px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  padding: 5px;
  margin-top: 80px;
  margin-bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image img {
  width: 90%;
  border-radius: 10px;
  margin: 5%;
}

.text {
  width: 90%;
  margin-bottom: 20px;
}

.text h2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: hsl(218, 44%, 22%);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.text p {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: hsl(220, 15%, 55%);
}
