main {
    display: flex;
    margin-top: 10px;
}

main h4 {
    font-size: 1em;
    color: #222;
    margin-top: 4px;
    margin-bottom: 4px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
}

.icon {
  width: 32px;
  vertical-align: middle;
}

.name {
  word-break: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}

#searchbox {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 8px 12px;
}

#searchbox>i {
  position: relative;
  top: 2px;
}

#search {
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
  top: -4px;
  width: 300px;
  font-size: 16px;
}

.card-group{
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}

.card{
  width: calc((100% - 40px) / 3);
  max-height: 600px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.2)
}

.card-content{
  width: 100%;
  height: auto;
  padding: 20px 18px;
  background: #fff;
  box-sizing: border-box;
}

.card-text {
  overflow: hidden;
  display: inline-block;
  width: 100%;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
}
