* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.container:before {
  content: "";
  position: fixed;
  top: -5%;
  left: -5%;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  width: 110%;
  height: 110%;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

a {
  text-decoration: none;
}

h1, h2 {
  text-shadow: 0px 0px 10px #000;
}

h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 4rem;
}

h2 {
  font-family: 'Merriweather', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 450px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 1rem;
    line-height: 2.5rem;
  }
}

.avatar {
  box-sizing: border-box;
  display: block;
  height: 120px;
  width: 120px;
  margin: 0 auto 20px auto;
  border-radius: 99em;
  border: 5px solid #eee;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

.links {
  margin-top: 0.5rem;
}

.links img {
  filter: drop-shadow(0px 0px 10px #000);
}
