html,
body {
  margin: 0;
  background-color: rgb(239, 192, 80);
  /* font-family: 'Raleway Dots', sans-serif; */
}

section #services {
  text-align: center;
  transform: translatez(0);
}

section #services h2 {
  margin: 80px 0px 40px;
  color: rgb(255, 253, 253);
  font-size: 2.4em;
  text-transform: uppercase;
  text-align: center;
}

section #services li {
  width: 80px;
  height: 100px;
  display: inline-block;
  margin: 20px;
  list-style: none;
}

section #services li div {
  width: 80px;
  height: 80px;
  color: #74d4b3;
  font-size: 3.4em;
  text-align: center;
  line-height: 80px;
  background-color: rgb(48, 48, 48);
  border-radius: 24px;
  transition: all 0.5s ease;
}

section #services li a {
  color: #5ea34e;
}

section #services li div:hover {
  transform: rotate(360deg);
  border-radius: 100px;
}

section #services li span {
  width: 80px;
  height: 20px;
  display: block;
  padding: 10px 0px;
  color: rgb(48, 48, 48);
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}

.credits a {
  display: block;
  text-align: center;
  color: #74d4b3;
  text-decoration: none;
  font-size: 24px;
  margin-top: 50px;
  background: white;
  padding: 20px;
  max-width: 300px;
}

.text-block {
  padding: 2em;
}

.info {
  font-size: 19px;
}

.info2 {
  font-size: 24px;
}

.text-white {
  color: rgb(255, 255, 255);
}

.grid {
  border-color: rgb(255, 255, 255);
  border: 3px;
  margin-top: 3em;
}

.hiddentext {
  display: none;
  font-family: 'Lucida Handwriting', cursive;
  font-size: 20px;
  padding: 1%;
  margin-left: 10px;
  background-color: #5ea34e;
  color: orange;
}

/* image overlay */
.image-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.image-container .after {
  position: absolute;
  font-size: 25px;
  font-family: 'Brush Script MT', cursive;
  top: 0;
  left: 50;
  width: 100%;
  height: 100%;
  display: none;
  color: rgb(74, 41, 236);
  text-align: center;
}

.image-container .round {
  border-radius: 100px;
}

.image-container:hover .after {
  display: block;
  background: rgba(0, 0, 0, .6);
}