@charset "UTF-8";

    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
    
    * {
      margin: 0px;
      padding: 0px;
    }

    body {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: hsl(212, 45%, 89%);
      font-family: "Outfit", sans-serif;
    }

    div {
      background-color: hsl(0, 0%, 100%);
      width: 320px;
      height: 499px;
      border-radius: 20px;
      box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.178);
    }

    div > picture {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 16px 16px 24px 16px;      
    }

    div > h2 {
      text-align: center;
      line-height: 120%;
      color: hsl(218, 44%, 22%);
      font-size: 22px;
      padding: 0px 15px 0px 15px;
    }

    div > p {
      text-align: center;
      font-weight: normal;
      line-height: 140%;
      letter-spacing: 0.2px;
      color: hsl(216, 15%, 48%);
      font-size: 15px;
      padding: 16px 28px 40px 28px;
    }

    img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
    }