#header {
  background-color: var(--colorGreenTranslucent);
  border-bottom: 4px solid var(--colorBlue);
  display: flex;
  justify-content: center;
  width: 100%;
  > #container {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin: 10px 15px 0px 15px;
    max-width: 1100px;
    width: 100%;
    > #logo {
      height: 55px;
      margin: 0px 30px 10px 0px;
      > img {
        border: none;
        cursor: pointer;
        height: 100%;
      }
    }
    > #language {
      cursor: pointer;
      padding: 2px 2px 2px 2px;
      margin: 0px 0px 10px 0px;
      text-decoration: none;
      &:hover {
        color: white;
      }
      @media (max-width: 900px) {
        margin: 0px 65px 10px 0px;
      }
      @media (pointer: coarse) {
        padding: 20px 2px 2px 2px;
      }
    }
  }
}
