@import url("fontFaces.css");

.flexContainer{
  padding-left: 2%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.socialMediaBar{
  display: flex;
  flex-direction: row;
}

.socialMediaBar a {
  align-items: center;
  padding-right: 5%;
  text-decoration: none;
  animation: popUp;
  animation-delay: 2s;
  animation-duration: 3s;
  color: black;
  font-size: 14pt;
}

span{
  font-family: JolieNevilleFF, Courier, monospace;;
  text-decoration: underline;
  color: black;
  font-size: .5em;
}


.fa.fa-facebook:hover {
  color: #38e9ad;
}

.fa.fa-twitter:hover {
   color: #38e9ad;
}
.fa.fa-instagram:hover {
   color: #38e9ad;
}
.fa.fa-linkedin:hover {
   color: #38e9ad;
}
.fa.fa-envelope:hover {
   color: #38e9ad;
}

span:hover {
  color: #38e9ad;
}


@keyframes popUp {
  0% {
    transform: scale(1);
  }
  70%{
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
