nav {
  width: 100%;
  padding-top: 1rem;
  height: fit-content;
  top: 0;
  background-color: var(--g);
  border-bottom: 3px solid var(--r);
  color: var(--d);

  .box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    align-items: center;

    .buttons {
      width: 100%;
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
      align-items: center;
      padding-bottom: 0.8rem;

      a {
        width: 3rem;

        img {
          width: 100%;
          height: 100%;
        }
      }

      button {
        color: var(--l);
        background-color: var(--d);
        padding: 0.5rem 1rem;
        font-size: 80%;
        border-radius: 10px;

        width: 3rem;

        img {
          width: 100%;
          height: 100%;
          filter: brightness(0) invert(1);
        }
      }
    }

    a {
      color: var(--d);
      background-color: var(--l);
      padding: 0.4rem 0.8rem;
      font-size: 80%;
      border-radius: 10px;
    }

    p {
      text-transform: capitalize;
      color: var(--d);
      font-size: 200%;
      font-weight: 600;
      text-align: center;
    }
  }
}

main {
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 90%;

  height: fit-content;
  padding: 2rem;
  background-color: var(--l);
  border-radius: 10px;
  border-top: 1px solid var(--g);
  border-right: 1px solid var(--g);
  box-shadow: -5px 5px 10px #f6f6f652;
  margin-left: auto;
  margin-right: auto;

  img {
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  iframe {
    width: 100%;
    height: 60vh;
    border: 1rem solid var(--d);
  }
}

footer {
  width: 100%;
  height: fit-content;
  padding: 1rem 0;
  background-color: var(--r);
  color: var(--l);

  .box {
    .social-links {
      display: flex;
      justify-content: center;
      padding-bottom: 1rem;
      gap: 1rem;

      a {
        width: 2rem;
        height: 2rem;

        img {
          width: 100%;
          height: 100%;
        }
      }
    }

    .quick-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 1rem 0;

      a {
        color: var(--l);
        text-decoration: none;
        font-size: 80%;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        background-color: var(--d);
      }
    }

    .copy {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 1rem;

      p {
        color: var(--l);
        font-size: 80%;
        font-weight: 500;
        text-transform: capitalize;
        font-size: 110%;
      }
    }
  }
}

/* @media (min-width: 568px) {
  nav {
    .box {
      .buttons {
        flex-direction: row;
        justify-content: space-between;
      }
    }
  }
} */

