/* CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('images/background.png') no-repeat center fixed;
  background-size: cover;
}

.head, .links {
  text-align: center;
}

.profile-card {
  width: 480px;
  max-width: calc(100vw - 10px);
/*  background-color: hsla(60, 100%, 50%, .4); */
  background-color: hsla(0, 0%, 100%, .5);
  border-radius: 4px;
  box-shadow: hsla(0, 0%, 0%, .8) 10px 10px 80px;
}

.head, .content {
/*  background-color: hsla(120, 100%, 50%, .4); */
  width: 90%;
  margin: 0 auto;
}

.profile-image, .name-headline, .about, .links {
/*  background-color: hsla(300, 100%, 50%, .4);*/
}

img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 1px;
  background-color: #666;
  transition: all 0.5s ease-in-out;
  filter: grayscale(50%);
}

img:hover {
  transform: scale(1.1);
  filter: grayscale(20%);
}

.profile-image {
  margin-top: -60px;
}

ul {
  list-style-type: none;
}

li {
  display: inline;
}

.head, .about {
  margin-bottom: 10%;
}

.content {
  padding: 5% 10%;
  border-top: 1px solid hsla(0, 0%, 30%, .8);
}


