


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

    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Kumbh Sans', sans-serif;
      background-color: hsl(185, 75%, 39%);
      background-image:
        url('./images/bg-pattern-top.svg'),
        url('./images/bg-pattern-bottom.svg');
      background-repeat: no-repeat, no-repeat;
      background-position: right 50vw bottom 40vh, left 50vw top 50vh;
    }

    .card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      width: 350px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .card-header {
      background: url('./images/bg-pattern-card.svg') no-repeat center/cover;
      height: 140px;
    }

    .profile-img {
      border-radius: 50%;
      border: 5px solid white;
      margin-top: -50px;
    }

    .card-body h1 {
      font-size: 18px;
      margin-top: 20px;
      color: hsl(229, 23%, 23%);
    }

    .card-body h1 span {
      color: hsl(227, 10%, 46%);
      font-weight: 400;
      margin-left: 8px;
    }

    .card-body p {
      color: hsl(227, 10%, 46%);
      font-size: 14px;
      margin: 10px 0 25px;
    }

    .card-footer {
      display: flex;
      justify-content: space-around;
      padding: 25px 0;
      border-top: 1px solid hsl(225, 10%, 92%);
    }

    .stat h2 {
      font-size: 18px;
      color: hsl(229, 23%, 23%);
    }

    .stat p {
      font-size: 10px;
      letter-spacing: 1.5px;
      color: hsl(227, 10%, 46%);
      margin-top: 5px;
    }
