@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins: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=Sora:wght@100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Poppins", sans-serif;
}

:root {
  /* Font sizes */
  --heading: 36px;
  --small-heading: 20px;
  --small-text: 14px;

  /* Font weights */
  --heading-weight: 600;
  --small-heading-weight: 600;
  --small-text-weight: 500;

  /* Colors */
  --text: #000;
  --small-text: #4d5562;
  --svg: #d9d9d9;
  --background: #f8fafc;
}

body {
  min-height: 100dvh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: var(--background);

  header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 42px;
    padding: 32px;
    max-width: 780px;
    margin: auto;
    width: 100%;
    padding-bottom: 10px;

    h1 {
      font-size: var(--heading);
      font-weight: var(--heading-weight);
      text-align: center;
    }
  }

  main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 820px;
    margin: auto;
    gap: 44px;
    width: 100%;
    padding: 32px;

    article {
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 48px;

      img {
        width: 150px;
        height: auto;
        border-radius: 12px;
      }

      div {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        justify-content: space-between;
        align-items: start;

        h2 {
          font-size: var(--small-heading);
          font-weight: var(--small-heading-weight);
        }
        p {
          font-size: var(--small-text);
          font-weight: var(--small-text-weight);
          color: var(--small-text);
          opacity: 0.8;
        }
      }
    }
  }
}
