@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
	background-color: #4a4a4a;
	color: white;
	font-family: "Montserrat", sans-serif;
}
* {
	font-family: "Montserrat", sans-serif;
}
h1 {
	font-size: 40px;
	font-weight: 900;
	text-align: center;
}
h1 > img {
	vertical-align: middle;
	width: 75px;
}
div {
	width: 400px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
iframe {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	border: 0;
}
p {
	padding: 25px;
}
p > span {
	display: block;
	background-color: #242424;
	border-radius: 5px;
	padding: 10px;
	text-align: left;
	border: 2px solid black;
	transition: all 0.2s;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
p > span:focus {
	border: 2px solid white;
	outline: 0;
}

p > input {
	display: block;
	background-color: #242424;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	text-align: left;
	border: 2px solid black;
	transition: all 0.2s;
	width: calc(100% - 25px);
	color: white;
	font-size: 16px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
p > input:focus {
	border: 2px solid white;
	outline: 0;
}

.code {
	letter-spacing: 40px;
	text-align: center;
	padding-left: 45px;
	padding-right: 2px;
	width: calc(100% - 57px);
	font-weight: 900;
}

button {
	display: block;
	background-color: #282828;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	border: 2px solid black;
	transition: all 0.2s;
	cursor: pointer;
	color: white;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
button:focus, button:hover {
	border: 2px solid white;
	outline: 0;
}

.crimson {
	color: crimson;
}
.lgreen {
	color: lightgreen;
}