@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,600');

a {
  color: #000;
  text-decoration: none;
}

html, body {
  color: #000;
  height: 100%;
  font-family: 'Fira Sans', sans-serif;
  padding: 0;
}

body {
  background-color: #7186a5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: #efefef;
  width: 400px;
  height: 500px;
  max-height: 90vh;
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.4);
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.me {
  border-radius: 50%;
  border: 1px solid #dedede;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-top: 40px;
}

.me img {
  max-width: 100px;
}

.about {
  font-size: 25px;
  font-weight: 600;
  margin-top: 30px;
}

.contact {
  display: flex;
  width: 100%;
}

@media (max-width: 400px) {
  .contact {
    flex-direction: column;
  }
}

.contact svg {
  width: 18px;
}

.contact-item {
  border-top: 1px solid #dedede;
  font-size: 12px;
  text-transform: uppercase;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.contact-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.contact-item:first-child {
  border-right: 1px solid #dedede;
}

@media (max-width: 400px) {
  .contact-item:first-child {
    border-right: none;
  }
}