* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Outfit, sans-serif;
}

.whole-body {
  background-color: hsl(216, 15%, 89%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  color: hsl(218, 44%, 22%);
  padding: 20px;
  border-radius: 10px;
  gap: 8px;
  width: 50vh;
}

.container-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  line-height: 1.5;
}
.img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.container-body-head {
  font-weight: 700;
  font-size: larger;
}
.container-body-descrip {
  font-weight: 400;
}
