@keyframes slideInFromUp {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.Contact h1 {
  font-size: 45px;
}
.icons-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 90px;
  width: 50%;
  animation: slideInFromUp 1s ease-out;
}
.contact-icon {
  color: var(--c1);
  text-decoration: none;
  font-size: 50px;
  width: 50px;
  height: 50px;
}
.contact-icon {
  padding: 10px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--animationSpeed) ease;
}
.contact-icon:hover {
  background-color: var(--c2);
  color: var(--c4);
}
.contact-wrapper a {
  color: var(--c1);
  text-decoration: none;
  margin:15px;
  animation: slideInFromUp 1s ease-out;
}
.contact-wrapper {
  /* 
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  */
  margin-bottom: 70px; 
  font-size: 30px;
  animation: slideInFromUp 1s ease-out;
}
