:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  margin: 0px;
  padding: 30px;
  overscroll-behavior: none;
  background-image: url("outerspace.gif");
  background-size: cover;
  background-attachment: fixed;
}

.body {
  background-color: white;
  margin: 20px;
  padding: 40px;
  height: auto;
  border-radius: 8px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.title {
  font-size: 24px;
  font-weight: bold;
}

p {
  margin-top: 0px;
}

.return {
  background-color: #c665ff;
  color: white;
  position: relative;
  width: 200px;
  height: 40px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.2s;
	transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	transition: transform 0.2s, -webkit-transform 0.2s;
}

.return:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.social {
  width: 100px;
  height: auto;
  justify-self: center;
}

