* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	background-color: rgb(44, 53, 50);
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

.wrapper {
	width: 100%;
	max-width: 800px;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 25px;
}

.info {
	margin: 15px 0;
}

.result {
	font-size: 20px;
	font-weight: bold;
	color: hsl(183, 29%, 47%);
}

.error-message {
	display: none;
	color: tomato;
	font-size: 16px;
}

label {
	display: block;
	text-align: center;
	font-size: 28px;
	color: rgb(216, 176, 140);
	font-weight: 700;
}

input {
	display: flex;
	align-items: center;
	margin: 28px auto 10px;
	padding: 15px 20px;
	width: 50vw;
	border-radius: 8px;
	font-size: 16px;
}

button {
	display: block;
	padding: 10px 20px;
	margin: 20px auto;
	cursor: pointer;
	background: none;
	color: #ccc;
	font-size: 16px;
	border: 3px solid #ccc;
	border-radius: 8px;
	text-transform: uppercase;
	transition: 0.5s;
}

button:hover {
	background-color: hsl(164deg 34% 87%);
	color: #000;
	font-weight: 700;
	border: #000;
}

@media (min-width: 576px) {
	.result {
		margin-bottom: 50px;
		font-size: 30px;
	}

	.error-message {
		font-size: 18px;
	}

	label {
		font-size: 44px;
	}

	input {
		font-size: 20px;
		width: 50%;
	}

	.bottom {
		text-align: center;
	}

	button {
		display: inline;
		padding: 20px 30px;
		margin: 20px 10px;
		font-size: 18px;
	}
}
