body {
  background-color: rgb(213, 225, 239);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

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

.blue-box {
  background-color: #2c7dfa;
  width: 288px;
  height: 288px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 15px;
  color: #1f314f;
  line-height: 1.5;
  margin: 16px;
  width: 100%;
}

.info h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.3;
}

.info p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: #7d889e;
  line-height: 1.5;
  max-width: 250px;
  text-align: center;
}

/*  Mobile 📱 */
@media (min-width: 320px) and (max-width: 480px) {
  .container {
    width: 90%;
    height: auto;
    padding: 12px;
  }

  .blue-box {
    width: 90%;
    height: auto;
    padding: 12%;
  }

  .info h3 {
    font-size: 18px;
  }

  .info p {
    font-size: 13px;
  }
}

/* 2. Tablets  📟 */
@media (min-width: 481px) and (max-width: 1024px) {
  .container {
    width: 70%;
    max-width: 400px;
  }

  .info h3 {
    font-size: 24px;
  }

  .info p {
    font-size: 16px;
  }
}
