.main-layout {
  gap: 0.5rem;
}

aside {
  display: none;

  @media (min-width: 960px) {
    display: block;
  }
}

header {
  position: relative;
  height: unset;
}

main {
  padding: 1rem;
}

.mobile-footer-nav {
  background: var(--blue);
  color: white;

  @media (min-width: 960px) {
    display: none;
  }

  ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-evenly;

    a,
    button {
      display: block;
      padding: 1rem;
      font-weight: bold;
      font-size: 2rem;
      color: white;
      height: 100%;
    }
  }

  .administration-links {
    display: none;
    &.open {
      display: flex;
    }
  }
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--blue);
  color: white;

  @media (min-width: 960px) {
    display: none;
  }

  h1 {
    display: block;
  }

  a,
  .button_to [type="submit"] {
    color: white;
    font-weight: bold;
    font-size: 2rem;
  }

  img {
    height: 50px;
  }
}
