body {
  background-color: #121212;
  background-image: url(tiles.png);
  background-position: center center;
  background-size: auto;
  color: aliceblue;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

.linkedin {
  filter: grayscale(100%);
  color: #2867B2;
  transition: .2s ease-in;
}

.linkedin:hover {
  filter: grayscale(0%);
  transition: .2s ease-in;
}

.github {
  filter: grayscale(100%);
  color: #c9510c;
  transition: .2s ease-in;
}

.github:hover {
  filter: grayscale(0%);
  transition: .2s ease-in;
}

.fullwidth {
  /* width: 100%;
  height: 100%;
  text-align: center; */
  height: 100%  ;
  position:relative;
  text-align: center;
}

.fullwidth .centered {
  /* line-height: 1;
  display: inline-block;
  vertical-align: middle; */
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center {
  position: fixed;
  width: 400px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -200px;
}