.link {
  text-decoration: none;
  color: #7FFFD4;
  font-weight: 400;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.link::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 50%;
  left: 0px;
  z-index: -1;
  transform: translate(0%, -50%);
  width: 0%;
  border-bottom: 2px dashed transparent;
  padding-bottom: 10px;
  transition-property: padding, border, width;
  transition-duration: 0.3s, 0.3s, 0s;
  transition-delay: 0s, 0s, 0.2s;
}
.link:hover::before {
  width: 105%;
  border-bottom: 2px solid #7FFFD4;
  padding-bottom: 5px;
  transition: width 0.3s;
}
.link--contact {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  margin-left: 10px;
  font-size: 2em;
  font-weight: bold;
  color: #ccc;
}
.link--contact:hover {
  color: #7FFFD4;
}
@media (max-width: 576px) {
  .link--contact {
    margin-bottom: 20px;
    font-size: 1.3333333333em;
  }
}