@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
  width: 100%;
  height: 100vh;
  font-family: outfit;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d5e1ef;
}

.container {
  min-height: auto;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 20px;
  flex-grow: 0;
}

.container img {
  max-width: 100%;
  min-height: auto;
  border-radius: 5px;
}

.container .lower-body {
  gap: 16px;
  padding: 0 16px;
}

.container .up-text,
.container .low-text {
  text-align: center;
}

.container .up-text {
  font-size: 22px;
  font-weight: 700;
}

.container .low-text {
  font-size: 15px;
  font-weight: 400;
}
