body {
  background-color: #100e0f;
  overflow: hidden;
}

main {
	position: relative;
  text-align: center;
}

img {
  width: 100%;
  max-width: 500px;
}

#socialBtns {
  text-align: center;
	position: absolute;
  width: 100%;
	bottom: 5vh;
}

i {
  transition-property: transform;
  transition-duration: 0.5s; 
  margin: 0 20px;
  color: white;
}

i:hover {
  transform: rotate(15deg);
}