.cell {
  width:200px;
  height:150px;
  color:#f4f4f4;
  background-color: rgba(20,45,69,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  cursor: pointer;
  &:hover{
    transform: scale(1.1);
    transition: 0.1;
  }
  .icon {
    font-size: 60px;
  }
  .intro {
    font-size: 14px;
  }
  .name {
    font-size: 24px;
  }
}
