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

html, body{
  background-color: #000;
  color: white;
  font-family: 'Titillium Web', sans-serif;
}

.section{
  margin-top: 50px;
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.section h1{
  width: 100%;
  padding-left: 50px;
  transition: ease-in-out 150ms;
}

.section:hover h1{
  background-color: #2d6bb9;
}

.elementLink{
  color: #fff;
  width: 22%;
  margin: 0 1.5%;
  padding: 15px 0;
  padding-left: 12px;
  margin-top: 15px;
  border-left: solid #4bdbf3 4px;
  text-decoration: none;
  transition: ease-in-out 150ms;
}

.elementLink:hover{
  transform: scale(1.05);
  background-color: #4bdbf3;
  color: #000;
  font-weight: bold;
}

.elementLink:visited{
  border-left: solid #2d6bb9 4px;
}