* {
	box-sizing: border-box;
}

html{
	overflow-y: scroll;
}

body {
  background-color: #222;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-size: 1.25rem;
	margin: 0;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
  background-color: rgba(255, 255, 255, 0.25);
  padding:0.25rem 0.45rem;
}

a,
a:visited,
a[href] {
  color: #61dafb;
}

#site {
  text-align: center;
}

.logo {
  margin: .5rem;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .logo {
    animation: logo-spin infinite 45s linear;
  }
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#footer {
  position: fixed;
  bottom: 0;
  left:50%;
  transform: translateX(-50%);
 }
 #footer p { font-size: 0.65rem; color: rgba(255, 255, 255, 0.25)}