@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100..900&family=Sofadi+One&display=swap');

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

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

  article {
    background-color: white;
    width: 320px;
    height: 499px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  }

  article img {
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 20px;
    object-fit: cover;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  section h1 {
    font-size: 22px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    text-align: center;
    margin-top: 6px;
  }

  section p {
    font-size: 15px;
    color: hsl(216, 15%, 48%);
    margin-top: 16px;
    text-align: center;
  }