 * {
      box-sizing: border-box;
     padding:0px;
     margin:0px;
    }

    body {
      background-color: #d5e1ef;
      font-family: 'Outfit', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 16px;
      max-width: 320px;
      text-align: center;
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    }

    img {
      width: 100%;
      border-radius: 12px;
    }

    .title {
      color: #1f314f;
      font-size: 18px;
      font-weight: 700;
      margin-top: 16px;
    }

    .subtext {
      color: #7b879d;
      font-size: 15px;
      margin-top: 12px;
      margin-bottom: 12px;
      padding: 0 10px;
    }

    .attribution {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      font-size: 11px;
    }

    .attribution a {
      color: hsl(228, 45%, 44%);
    }