/*@font-face {
    font-family: AndroidInsomnia;
    src: url(../assets/Android_Insomnia.ttf);
}*/

html, body {
  margin: 0;
  height: 100%;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color:#4A90E2;
  color: #fff;
  background-image: url(../assets/bg.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Lato, sans-serif;
}

.flex {
  display: flex;
  align-items: stretch;
}

#particles-js {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*.logo {
  position: absolute;
  top: 0;
  left: 0;
  font-family: AndroidInsomnia;
  font-size: 50px;
  color: #4A90E2;
}*/

.card {
  position:relative;
  margin: 0 auto;
  max-width:700px;
  padding:2em;
  max-width:700px;
  border-radius:4px;
  background-color: #fff;
  color: #4A4A4A;
}

.card-content {
  display: block;
}

.career-entry {
  margin-bottom: 1em;
}

.career-entry .company a {
  font-weight:bold;
  font-size:120%;
  margin-bottom:0.2em;
  color:#4A90E2;
}

.career-entry .role, .career-entry .date {
  margin-left:1em;
  font-size: 100%;
}

.career-entry .date {
  color: #aaa;
  margin-bottom:0.5em;
}

.portrait {
  margin: 1em auto;
  border-radius: 50%;
  height: 150px;
}

.name {
  font-weight: bold;
  font-size: 200%;
}

.desc {
  font-weight: bold;
  font-size: 150%;
  color: #aaa;
}

.bio {
  margin-top:1em;
}

.career {
  padding-left:3em;
  border-left: 1px solid #eee;
}

.social-icons {
  font-size: 200%;
  margin-top: 1em;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  outline: none;
  color: #aaa;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-right: 5px;
  text-decoration: none;
}

.social-icons a:hover, .social-icons a:active, .social-icons a:focus {
  color:#4b91e2;
}

.social-logo {
  height: 28px;
  width: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ilum-logo {
  background-image: url('/assets/ilum-gray.png');
}

.social-icons a:hover .ilum-logo {
  background-image: url('/assets/ilum-blue.png');
}

@media(max-width:768px) {
  body {
    display: block;    
    background-image: none;
    background-color: #fff;
  }
  .career {
    margin-top: 2em;
    border-top: 1px solid #eee;
    border-left: none;
    padding-top: 2em;
    padding-left: 0;
    text-align: center;
  }
}

.inline-block {
  display:inline-block;
}