* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit';
    padding: 16px;
  }

  .container {
    background: hsl(0, 0%, 100%);
    width: 320px;
    padding: 16px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 28px rgba(0,0,0,0.05);
  }

  img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 24px;
  }

  h1 {
    color: hsl(218, 44%, 22%);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 120%;
    padding: 0 8px;
  }

  p {
    color: hsl(216, 15%, 48%);
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
    padding: 0 8px;
  }