	
	body {
		padding: 20px;
	}
	body::after {
		justify-content: top;
		align-items: center;
		flex-direction: column;
		height: 100vh;
		width: 100vw;
		content: "";
		background-image: url("/buddieslogo.jpg" );
		opacity: 0.1;
		top: 0;
		left: 0;
		bottom: 50;
		right: 0;
		position: absolute;
		z-index: -1;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.sse-msg {
		font-size: 1em;
		color: red;
		/*border: 2px solid;*/
		word-wrap: break-word;
		width: 90vw;
		opacity: 0.9;
	
	}
	.container {
		color: black;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.generic-text {
		font-size: 3em;
		color: black;
		text-align: center;
		padding: 10px;
		padding-left: 2em;
	}
	.registration-success-text {
		font-size: 3em;
		color: black;
		text-align: center;
		padding: 5px;
		padding-left: 1em;
	}
	.input-text {
		font-size: 4em;
		color: red;
		border: 2px solid;
		text-align: center;
		width: 90vw;
		opacity: 0.9;
	}
	#menuToggle {
		display: block;
		position: relative;
		top: 2px;
		left: 2px;
		z-index: 1;
		-webkit-user-select: none;
		user-select: none;
		opacity: 0.9;
	}
	
	#menuToggle a {
		text-decoration: none;
		color: #232323;
		transition: color 0.3s ease;
	}
	#menuToggle a:hover {
		color: tomato;
	}
	#menuToggle input {
		display: block;
		width: 40px;
		height: 32px;
		position: absolute;
		top: -7px;
		left: -5px;
		cursor: pointer;
		opacity: 0; /* hide this */
		z-index: 2; /* and place it over the hamburger */
		-webkit-touch-callout: none;
	}

	/*
 * Just a quick hamburger
 */
	#menuToggle span {
		display: block;
		width: 33px;
		height: 4px;
		margin-bottom: 5px;
		position: relative;
		background: #cdcdcd;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0px;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
			background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s
			ease;
			opacity: 0.5;
	}
	#menuToggle span:first-child {
		transform-origin: 0% 0%;
	}
	#menuToggle span:nth-last-child(2) {
		transform-origin: 0% 100%;
	}

	/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
	#menuToggle input:checked ~ span {
		opacity: 1;
		transform: rotate(45deg) translate(-2px, -1px);
		background: #232323;
	}

	/*
 * But let's hide the middle one.
 */
	#menuToggle input:checked ~ span:nth-last-child(3) {
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
	}

	/*
 * Ohyeah and the last one should go the other direction
 */
	#menuToggle input:checked ~ span:nth-last-child(2) {
		transform: rotate(-45deg) translate(0, -1px);
	}

	/*
 * Make this absolute positioned
 * at the top left of the screen
 */
	#menu {
		position: absolute;
		width: 300px;
		margin: 0 0 0 0;
		padding: 5px;
		padding-top: 1px;
		background: #ededed;
		list-style-type: none;
		-webkit-font-smoothing: antialiased;
		/* to stop flickering of text in safari */
		transform-origin: 0% 0%;
		transform: translate(-100%, 0);
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
		opacity: 2.0;
	}
	#menu li {
		padding: 10px 0;
		font-size: 22px;
	}

	/*
 * And let's slide it in from the left
 */
	#menuToggle input:checked ~ ul {
		transform: none;
	}

.btn {
	background-color: #04AA6D; /* green */
	border: none;
	color: white;
	padding: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 4px 2px;
	cursor: pointer;
}

.copyright {
	font-size: 1em;
	color: black;
	text-align: center;
	width: 95vw;
	opacity: 0.9;
	
}

.answer-button {
	background-color: #00FF00;
	font-size: 4em;
}

.register-button {
	background-color: #00FF00;
	font-size: 5em;
}

/* new slide in menu */
button.open-nav-btn {
  font-size: 1.5rem;
  border: 0px solid black;
  background-color: transparent;
  margin: 7px;
  margin-left: 5px;
}

.slide-content {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s;
  padding-top: 60px;
  visibility: hidden;
}

.slide-content a li {
  /*padding: 8px 8px 8px 32px;*/
  padding-top: 25px;
   text-decoration: none;
  /*font-size: 25px;*/
  font-size: 4em;
  color: #FFFFFF;
  /*color: #F5F5F5;*/
  display: block;
  word-wrap: break-word;
}

.slide-content a:focus,
.slide-content button:focus {
  outline: 0px solid black;
}

main a:focus,
.open-nav-btn:focus {
  outline: 0px solid blue;
  outline-offset: 5px;
}

.close-btn {	
  font-size: 25px;
  /*color: #F5F5F5;*/
  color: black;
  background-color: transparent;
  border: none;
}

.slide-content a:hover,
.slide-content a:focus {
  text-decoration: underline;
}

.slide-content .close-btn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 10px;
}

.visible {
  visibility: visible;
}

.active {
  width: 300px;
}

main {
  padding: 0 10%;
}

main li {
  margin-bottom: 10px;
}

h1 {
  text-align: center;
}


