@media only screen and (min-width: 768px) {
  footer {
    position: relative;
    z-index: 5;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
  }

  .footer-left {
    width: 30%;
    /* dont center */
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-left a {
    text-decoration: none;
  }

  .footer-left p {
    margin-top: 20px;
    margin-left: 20px;
    color: var(--subheader-text-color);
  }

  .footer-middle,
  .footer-right {
    width: 30%;
    /* dont center */
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-middle h3,
  .footer-right h3 {
    color: var(--header-text-color);
    font-weight: bold;
    text-align: left;
  }

  .browse-link,
  .about-link {
    /* grid layout 2 columns */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 60%;
    color: var(--subheader-text-color);
    text-align: left;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-decoration: none;
  }

  :root {
    --header-text-color: #ffffff;
    --subheader-text-color: #6c7e80;
  }

  body {
    background-color: #030305;
    color: whitesmoke;
    /* unscrollable */
  }
}

@media only screen and (max-width: 767px) {
  footer {
    position: relative;
    z-index: 5;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
  }

  .footer-left {
    width: 30%;
    /* dont center */
    text-align: left;
    font-size: x-small;
    margin-right: 30px;
  }

  .footer-left a {
    text-decoration: none;
  }

  .footer-left p {
    margin-top: 20px;
    margin-left: 20px;
    color: var(--header-text-color);
  }

  .footer-middle,
  .footer-right {
    width: 30%;
    /* dont center */
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-middle h3,
  .footer-right h3 {
    color: var(--header-text-color);
    font-weight: bold;
    text-align: left;
  }

  .browse-link,
  .about-link {
    /* grid layout 2 columns */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 60%;
    color: var(--subheader-text-color);
    text-align: left;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-decoration: none;
  }

  :root {
    --header-text-color: #ffffff;
    --subheader-text-color: #6c7e80;
  }

  body {
    background-color: #030305;
    color: whitesmoke;
    /* unscrollable */
  }
}
