/*
Name: Jack Venberg
Date: 04.08.18
Section: CSE 154 AH

This is the index.css page for my creative project #3 in which I have created
a short contact information site with a gallery. This style modifies the
index.html page of the website.
*/

span {
  vertical-align: middle;
  padding-bottom: 3px;
  margin-right: 5px;
}

#card-main {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-around;
  padding: 30px;
}

#profile-pic {
  border-radius: 50%;
  width: 30%;
  align-self: center;
}

#contact-info > a > p {
  margin-bottom: 15px;
}

@keyframes expand {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/*
  Social icons from Font Awesome.
  Link: https://fontawesome.com/
*/

.fa {
  margin: 0 3px;
  padding: 15px;
  font-size: 20px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
}

.fa-youtube {
  background: #BB0000;
}

.fa-flickr {
  background: #F40083;
}

.fa-snapchat-ghost {
  background: #FFFC00;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-linkedin {
  background: #007BB5;
}

.fa-github {
  background: #24292e;
}

.fa-instagram {
  background: #125688;
}