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

    body {
      position: relative;
      background: #1d1d1b;
      height: 100vh;
      /* overflow: hidden; */
    }

    img {
      display: block;
      max-width: 100%;
      margin: 0 auto;
      width: 100%;
    }

    /* Mobile Styles
======================================================= */
    .mobile {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .mobile__footer {
      display: grid;
      grid-template-columns: 40px 1fr 40px;
      align-items: center;
      gap: 10px;
      padding-inline: 10px;
    }

    .mobile__footer>img {
      width: auto;
      height: auto;
    }

    @media screen and (max-width: 767px) {
      .tablet {
        display: none;
      }

      .fb-img,
      .insta-img {
        width: 24px;
      }
    }

    @media screen and (min-width: 768px) {
      .mobile {
        display: none;
      }

      .tablet {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0px;
      }

      .tablet__footer {
        display: grid;
        grid-template-columns: 1fr 160px;
        gap: 20px;
      }

      .tablet__footer-links {
        display: flex;
        gap: 30px;
        align-items: center;
      }

    }

    @media screen and (min-width: 768px) and (max-width: 1279px) {
      .tablet__footer>img {
        width: 70%;
        margin-left: 25%;
      }

      .tablet__footer-links {
        gap: 20px;
      }

      .tablet__footer {
        margin-top: -10%;
      }

      .fb-img,
      .insta-img {
        width: 48px;
      }
    }

    @media screen and (max-width: 1279px) {

      .desktop {
        display: none;
      }
    }

    @media screen and (min-width: 1280px) {
      .tablet {
        display: none;
      }

      .desktop__social-links {
        display: flex;
        gap: 10px;
        align-items: center;
        position: absolute;
        top: 3%;
        right: 20px;
        z-index: 1;
      }

      .desktop__social-links img {
        width: 40px;
      }

      body {
        overflow: hidden;
      }

      .desktop__body {
        position: absolute;
        bottom: 0px;
        width: 100%;
      }

      .desktop__header img {
        width: 80%;
      }

    }