header {
  padding: 18px 24px;
  display: flex;
  justify-content: center;

  .logo {
    width: 178px;
    height: 18px;
  }
}

main {
  background-image: url('../assets/grid-mobile.png');
  background-position: center;

  @media screen and (min-width: 768px) {
    background-image: url('../assets/grid-desktop.png');
  }
}

section {
  background-color: #1C1C1C;
  position: relative;
}

footer {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #EEFE8F;
  margin-top: 80px;
  margin-bottom: 16px;

  .footer-wrapper {
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    .link-wrapper {
      font-size: 12px;
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 24px;

      a {
        color: #EEFE8F;
      }
    }

    .footer-logo {
      height: 18px;
    }

    .social-wrapper {
      display: flex;
      align-items: center;
      gap: 16px;

      img {
        height: 18px;
      }
    }
  }

  @media screen and (min-width: 768px) {
    margin-top: 256px;
    margin-bottom: 32px;

    .footer-wrapper {
      padding: 40px 12px;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;

      .link-wrapper {
        font-size: 16px;
      }

      .footer-logo {
        height: 24px;
      }

      .social-wrapper {
        gap: 24px;

        img {
          height: 24px;
        }
      }
    }
  }
}
