.feed {
  display: inline-block;
  box-sizing: border-box;
  text-align: start;
  margin: 39px;
  padding: 0px;
  border: 1px solid #ccc;
  color: #555;
  text-decoration: none;
  width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feed > .head > h2 {
  margin-left: 10px;
}

.contact {
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
}

a {
  text-decoration: none;
  color: #31415f;
}

.info {
  /* border-bottom-color: black; */
  border: 1px #ccc solid;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.info > p {
  margin: 0 0 0 10px;
  padding: 0;
}

.info > img {
  width: 32px;
}

.info:hover {
  border-top: 2px solid #5893f9;
  border-left: 2px solid #5893f9;
  border-right: 2px solid #5893f9;
  border-bottom: 2px solid #5893f9;
  box-shadow: 0px 0px 999px 10px rgba(88, 147, 279, 0.75);
}

span.proficient {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #77dab2;
  border-radius: 50%;
}
span.familiar {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #dacb77;
  border-radius: 50%;
}
span.learning {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #da7a77;
  border-radius: 50%;
}
