/* unvisited link */
a:link {
    color: grey;
  }
  
  /* visited link */
  a:visited {
    color: grey;
  }
  
  /* mouse over link */
  a:hover {
    color: hotpink;
  }
  
  /* selected link */
  a:active {
    color: hotpink;
  }

a {
  line-height: 150%;
}

.item {
  margin-bottom:18px;
  padding:8px;
  border-radius:4px;
  border: solid bisque 1px;
  width:24%;
  background-color: lightgoldenrodyellow;
}