html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url(../img/galaxy.jpg);
}

.wrapper {
	width: 85%;
	margin: 2rem auto;
	padding: 3rem 0;
}

section {
	background-color: #D5C6FF;
	padding: 1em;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	margin: 10px auto;
}

form {
	gap: 5rem;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.flex-left {
	flex-basis: 18rem;
}

.flex-right {
	flex-basis: 36rem;
}

form {
	padding: 1.2rem;
}

p,
[for="abtype"] {
	margin: 2rem 0 0 0
}

fieldset {
	border: 1px solid #000000;
	border-radius: 10px;
	margin-bottom: 2rem;
}

legend {
	font-weight: bold;
	font-size: 1.2em;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

label {
	display: block;
	margin: 0.5rem 0;
	padding-bottom: 0.3rem;
	font-weight: bold;
}

textarea {
	height: 10rem;
	padding: 1rem;
}

select {
	font-size: 0.9rem;
}

button {
	font-size: 0.9rem;
	font-weight: bold;
	margin: 2rem 0;
	background-color: #D3FE3E;
	color: #000;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 10px;
}

button:hover {
	background-color: #000;
	color: #D3FE3E;
	cursor: pointer;
}

input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
	display: block;
	margin-bottom: 2rem;
	width: 20rem;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9rem;
	border-radius: 10px;
	padding: 0 1rem;
}

h1,
legend {
	font-family: "Orbitron", sans-serif;
}

h1 {
	-webkit-text-stroke: 5px #704db9bc;
	-webkit-text-stroke: 2px #ffffff;
}

.frame {
	margin: 20px;
	padding: 0;
	border: 15px solid #704db9bc;
}

.location {
	margin: 2rem auto;
}

.indent {
	margin-left: 2rem;
}

.glow {
	font-size: 64px;
	color: #fff;
	text-align: center;
	text-wrap: balance;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #704db9bc, 0 0 40px #704db9bc, 0 0 50px #704db9bc, 0 0 60px #704db9bc, 0 0 70px #704db9bc;
	}

	to {
		text-shadow: 0 0 20px #fff, 0 0 30px #6f4db947, 0 0 40px #6f4db947, 0 0 50px #6f4db947, 0 0 60px #6f4db947, 0 0 70px #6f4db947, 0 0 80px #6f4db947;
	}
}