body {
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	box-sizing: border-box;
	background-color: black;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background-color: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.1); /* statt border-bottom */
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-left {
  color: white;
}

.footer-right {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
}

.site-footer a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
}

.separator {
  margin: 0 4px;
  color: rgba(255,255,255,0.3);
}

.background1 {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url("../imgs/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}