* {
  box-sizing: border-box;
}

body,
html,
div,
p {
  padding: 0px;
  margin: 0px;
}

body,
html {
  height: 100vh;
  width: 100%;
  background-color: rgb(240, 240, 240);
}

.maintenance-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.maintenance-container {
  width: 500px;
  min-height: 250px;
  background-color: white;
  border-radius: 4px;
  padding: 16px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
	-webkit-box-shadow: 0px 0px 17px -9px #000000; 
	box-shadow: 0px 0px 17px -9px #000000;
  margin: 8px;
}

h2 {
  text-align: center;
}

.imprint {
  width: 100%;
}

.imprint h2 {
  text-align: left;
}

.maintenance-icon {
  position: fixed;
  bottom: -30px;
  left: 0px;
  overflow: hidden;
  user-select: none;
}

.legal-area {
  position: fixed;
  bottom: 8px;
  left: 8px;
  overflow: hidden;
  user-select: none;
  color: rgb(200, 200, 200);
}

.legal-area a {
  transition: all .2s;
}

.legal-area a:hover {
  color: rgb(230, 230, 230);
}

.social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
}

a {
	text-decoration: none;
	color: inherit;
}

.social .social-badge {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgb(39, 23, 130);
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #271782;
	cursor: pointer;
	transition: background-color .2s;
}

.social .social-badge:hover {
	background-color: rgba(39, 23, 130, 0.2);
}