.close-menu {
  display: none;
}

.menu-aside {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  background: var(--black-color);
  color: var(--primary-color);

  h1 {
    font-size: 2.3rem;
    color: var(--primary-color);

    a {
      color: inherit;
    }
  }

  ul {
    list-style: none;
    display: flex;
    li {
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        font-size: 1.6rem;
        color: var(--primary-color);
        position: relative;
        transition: all 300ms ease-in-out;
        img{
          width: 18px;
          margin-right: 5px;
        }
      }

      a:hover {
        background-color: rgba(255, 255, 255, 0.1);
      }
    }
  }
}

.menu-content {
  max-width: 140rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.menu-spacing {
  height: 60px;
}

.row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.coll{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.remove-link-style{
  color: var(--white-color);
  text-decoration: none;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .menu-aside {
    bottom: 0;
    text-align: center;
    display: none;
  }

  .remove-link-style{
    margin-bottom: 30px;
  }

  .menu-content, .menu-content ul {
    flex-direction: column;
    justify-content: center;
  }

  .menu-content {
    height: 100vh;
  }

  .close-menu-label::after {
    content: '☰';
    position: fixed;
    z-index: 3;
    top: 2rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 3rem;
    line-height: 3rem;
    width: 3rem;
    height: 3rem;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: var(--primary-color) 0 0 10px;
  }

  .close-menu:checked~.menu-aside {
    display: block;
  }

  .close-menu:checked~.close-menu-label::after {
    content: '×';
  }

  .menu-spacing {
    display: none;
  }
}
