* {
	margin: 10px;
	font-family: 'Fira Code', monospace;
}

html, body {
	width: 100% - 10px;
	height: 100% - 10px;
}

button {
	background: linear-gradient(-45deg, #ee7752, #f06970, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

body {
	font-size: calc(1rem + 0.5vw);
}

.header {
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 4rem;
}

.header-title {
	margin-left: 0px;
}

.error {
	font-weight: bold;
	color: red;
}

input[type=checkbox] {
	transform: scale(2);
}

h1 {
	font-size: 4rem;
}

.feedbackSelection {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.bouncegame, .rungame, .evan {
	padding: 9px;
	border: 3px solid black;
	border-radius: 10px;
}

.thanks {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	margin-left: 0px;
}

.thanks p {
	margin-left: 10px;
}

button {
	font-size: calc(1rem + 0.5vw);
	padding: 15px;
	border: none;
	border-radius: 10px;
	width: 50%;
	font-weight: bold;
}

button:hover {
	cursor: pointer;
}

textarea {
	width: 98%;
	height: 20vh;
	font-size: calc(1rem + 0.5vw);
	padding: 10px;
	border-radius: 10px;
	border: 3px black solid;
}
