body{
	font-family: monospace, sans-serif;
	background-color: #242424;
	font-size: 1rem;
	height: 100vh;
	color: white;
	margin: 0;
}

main{
	justify-content: center;
	align-items: center;
	display: flex;
	height: 100vh;
}

textarea:focus,
input:focus{
	outline: solid 2px royalblue;
	border-color: transparent;
}

h1, h2, h3{
	font-weight: lighter;
}

p{
	line-height: 1.4;
}

main > *,
form{
	background-color: hsla(0, 0%, 100%, 0.1);
	width: min(500px, 100%);
	border-radius: 4px;
	padding: 0 20px 20px 20px;
}

@media (min-width: 440px) {
	main > *,
	form{
		margin: 40px;
	}
}

@media (max-width: 440px) and (max-height: 900px){
	main > *,
	form{
		height: 100vh;
		overflow-y: auto;
	}
}

form p{
	flex-flow:  wrap;
	display: flex;
}

form p > *{
	width: 100%;
}

form p > * + *{
	margin-top: 5px;
}

form p > small{
	font-size: 0.8em;
	opacity: .6;
}

input,
textarea{
	border: solid 1px hsla(0, 0%, 100%, 0.2);
	min-width: calc(100% - 20px);
	background-color: inherit;
	font-family: inherit;
	border-radius: 4px;
	font-size: inherit;
	color: inherit;
	padding: 10px;
}

textarea{
	width: calc(100% - 20px);
}

label::after{
	content: ":";
}

.group{
	display: flex;
	gap: 20px;
}

.group > *{
	width: 100%;
}

.button,
button{
	font-family: monospace, sans-serif;
	background-color: royalblue;
	padding: 10px 30px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	color: white;
	border: none;
	display: table;
	font-size: inherit;
}

.button:hover,
button:hover{
	background-color: purple;
	text-decoration: underline;
}

.button:active,
button:active{
	background-color: orange;
	color: #333;
}

.button.type_2{
	background-color: crimson;
}

.button.type_2:hover{
	background-color: DeepPink;
}

.button_group{
	display: flex;
	gap: 20px;
}

.button_group > *:last-child{
	margin-left: auto;
}