body {
  background: url('imgs/backgrounds/1.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40%
}

/**
 * ERROR STYLING
 */
.error {
  text-align: center;
  padding: 10px;
  border: 3px solid white;
  border-radius: 8px;
  color: white;
  background-color: rgba(0, 0, 0, 0.50);
  text-decoration: none;
  font-family: cursive;
  width:
}

/**
 * PROFILE STYLING
 */

#profile {
  background-color: rgba(255, 255, 255, 0.80);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.80);
  text-align: center;
}

@keyframes round-to-square {
  0% {
    border-radius: 300px;
  }
  100% {
    border-radius: 30px;
  }
}

#profile #picture {
  text-align: center;
}

#profile #picture img {
  width: 300px;
  height: auto;
  transition: border-radius 1s;
  border-radius: 300px;
  margin-left: auto;
  margin-right: auto;
}

#profile #picture img:hover {
  border-radius: 30px;
}

#profile #title {
  text-align: center;
  font-size: 1.8rem;
}

#social {
  text-align: center;
  padding: 0;
  margin: 0;
}

#social li {
  display: inline-block;
  margin: 2px 2px;
  list-style-image: none;
  font-size: 1.1rem;
  background-color: lightgrey;
  border: 1px solid grey;
  border-radius: 5px;
  cursor: pointer;
  color: grey;
}
#social li a {
  padding: 5px;
  text-decoration: none;
  color: inherit;
}

#profile p {
  font-style: italic;
  font-size: 1.5rem;
}

/**
 * IMAGES
 */
.social-media {
  width: 20px;
	height: 20px;
	display: inline-block;
	background-size: cover;
  vertical-align: middle;
}

 .linkedin {
   background-image: url('imgs/linkedin.jpg')
 }

 .github {
   background-image: url('imgs/github.png')
 }
