#content {
  margin-bottom: 10px;
}

.jumpToLink {
  margin: 4px;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
}

.member {
  padding: 4px;
  border: 1px solid grey;
  margin: 8px;
  border-radius: 10px;
  display: flex;
}

.memberContainerColumn {
  flex: 1;
}

@media screen and (orientation: portrait) {
  #jumpToLinks {
    display: block;
  }
  
  .member {
    width: 90%;
  }
  
  .jumpToLink {
    font-size: clamp(20px, 6vh, 40px);
  }
}

@media screen and (orientation: landscape) {
  #jumpToLinks {
    display: none;
  }
  
  #membersContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .member {
    min-width: 280px;
  }
  
  .jumpToLink {
    font-size: clamp(8px, 2.4vh, 16px);
  }
}
