:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
  }

  * {
    font-family: 'Outfit', sans-serif;
  }

  body {
    background-color: var(--light-gray);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: 30px;
    height: 36em;
    width: 23em;
  }

  .container__image {
    height: 20em;
    width: 20em;
    margin: 20px;
    border-radius: 15px;
  }

  .container__body {
    padding: 30px;
    position: relative;
    text-align: center;
    bottom: 40px;
  }

  .container__title {
    font-size: 27px;
    color: var(--dark-blue);
  }

  .container__text {
    font-size: 18px;
    color: var(--grayish-blue);
  }