:root {
  --bg-color: #d5e1ef;
  --white-color: #fff;
  --heading-color: #1f314f;
  --text-color: #68778d;
}

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

body {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
}

.container {
  max-width: 320px;
  margin: 0 auto;
  background-color: var(--white-color);
  padding: 16px;
  border-radius: 10px;
}

.img-container {
  margin-bottom: 16px;
}

.img-container img {
  width: 100%;
  border-radius: 10px;
}

.text-center {
  text-align: center;
  padding: 0 10px;
}

h1.text-center {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 120%;
}

p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 22.4px;
}
