@media only screen and (max-width: 1100px) {
  .content {
    padding: 10px;
    box-sizing: border-box;
  }

  #navbar .logo_small {
    position: absolute;
    top: 0;
    right: 0;
  }

  #navbar_toggle {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    font-size: 2rem;
    padding: 1rem;
    z-index: 1001;
    cursor: pointer;
  }

  #navbar_toggle::before{
    position: relative;
    display: block;
    height: 2rem;
    width: 2rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0c9";
  }

  #navbar_toggle.active::before {
    height: 2rem;
    width: 2rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00d";
  }
  #navbar {
    padding-top: 3rem;
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-right: 2px solid var(--c2);
    z-index: 1000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    display: none;
  }

  #navbar > div {
    margin: 1rem 0;
    text-align: center;
    font-size: 2rem;
    font-variant: small-caps;
  }
}

@media only screen and (max-width: 700px) {
  .project-link {
    background-position: center;
    border-left: 2px solid var(--c2);
  }
  .projectitem {
    min-height: 250px;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .project-content {
    width: 100%;
  }
}
