/* CSS reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
}

#profile-card {
  /*background-color: hsla(60, 100%, 50%, .4);*/
  width: 480px;
  max-width: calc(100vw - 10px);
  background-color: hsla(0, 0%, 100%, .7);
  border-radius: 4px;
  box-shadow: hsla(0, 0%, 0%, .8) 10px 10px 80px;
}

#head, #content {
  /*background-color: green;*/
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

#profile-image, #name-headline, #about, #links {
  /*background-color: #90c;*/
}

#profile-image {
  margin-top: -60px;
}

#head, .szoveg {
  margin-bottom: 5%;
}

#content {
  padding: 5% 10%;
  border-top: 1px solid hsla(0, 0%, 30%, .8);
}

.szoveg {
  font-weight: bold;
}

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%);
}

/* Contact links */

ul {
  list-style-type: none;
}

li {
  display: inline;
}