
body {
    background-color: #303030;
}

h1, h2 {
    text-align: center;
    color: white;
}

.social {
    position: fixed; /* or absolute */
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, 0%);

}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  background-size: 50px 50px;
}

.social-link.twitter {
  background-image: url('../images/twitter.svg');
}
.social-link.facebook {
  background-image: url('../images/facebook.svg');
}
.social-link.github {
  background-image: url('../images/github.svg');
}
.social-link.instagram {
  background-image: url('../images/instagram.svg');
}

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

ol, ul {
	list-style: none;
}

.container {
    /* border: 1px solid red; */
    width: 1000px;
    margin: 0 auto;
    display: inherit;
    justify-content: center;
    align-items: inherit;
    height: inherit;
    flex-wrap: inherit;
  }