.app {
  .appHeader {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    .logo {
      flex-grow: 0;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 5px;
      cursor: pointer;
      img {
        width: 50px;
        border-radius: 50%;
      }
    }
  }
  .appContent {
    display: flex;
    flex-direction: column;
    .query {
      display: flex;
      flex-direction: row;
    }
  }
}
