@media (max-width: 600px) {
	.settings{
		display: none;
	}
  .nav-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .6rem;
    width: 3rem;
    height: 3rem;
    padding: .25rem;
  }
  .navigation {
    width: 100%;
    height: 4rem;
    position: fixed;
    bottom: 0;
    left: 0;
    background: var(--fox-surface);
    border-top: 2px solid var(--fox-brand);
    justify-content: space-between;
    padding: 0 .5rem;
	  	  z-index: 800;

  }
  .header {
    width: 100%;
    height: 4rem;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--fox-surface);
    border-bottom: 2px solid var(--fox-brand);
    justify-content: space-between;
    padding: 0 1rem;
	  z-index: 800;
  }
  .main {
    padding: 4rem 0;
  }
	.desktop-only{
		display: none;
	}
}