* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 20px 10%;
  background: #f2f3f3
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  font-weight: 400
}

.nav a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 4px;
  color: #898c8f;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

.nav a:hover {
  box-shadow: 0 6px 16px 0 #d6e0e8;
}

h2 {
  margin: 30px 0 15px;
  color: #3d3d3d
}

.card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px 24px 0;
  width: 260px;
  height: 80px;
  background: #fff;
  border-radius: 4px;
  transition: all .2s ease-out;
  vertical-align: top;
}

.card:hover {
  box-shadow: 0 6px 16px 0 #d6e0e8;
}

.card:hover .card-name {
  color: #00a4ec;
}

.card:hover .card-desc {
  color: #686868;
}

.card-icon {
  margin-right: 8px;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  vertical-align: top;
}

.card-main {
  overflow-y: hidden;
  display: inline-block;
  width: 200px;
  max-height: 90%;
}

.card-name {
  width: 100%;
  font-size: 14px;
  color: #3d3d3d;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: color .3s ease-out;
}

.card-desc {
  color: #909090;
  font-size: 12px;
}