body {
  font-family: 'Source Sans Pro', Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: #121212;
  color: white;
  text-align: center;
  background-image: url("img/bg.jpg");
  background-size: cover;
  background-attachment: fixed;   /* fix for ios safari not recognising background-size: cover; */
}

a:link, a:visited, a:hover, a:active {
  color: white;
  text-decoration: none;
}

#holder {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo {
  display: inline-block;
  margin: 2% 0;
  height: 5em;
  width: 5em;
}

#name {
  display: inline-block;
  font-size: 4em;
  font-weight: 700;
  margin: 2% 0 10% 0;
  text-shadow: 0 0 0.3em black;
}

#name::selection {
  background-color: rgba(252, 185, 54, 0.4);
}

#info {
  display: inline-block;
  margin: 2% 0;
  font-weight: 300;
  text-shadow: 0 0 0.3em black;
}

#info::selection {
  background-color: rgba(252, 185, 54, 0.4);
}

#webmail {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 5%;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2em 0.5em;
  border-radius: 0.2em;
}

#webmail:hover {
  background-color: rgba(255, 255, 255, 0.2);
}