* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.text-center {
	background-image: url(./img/pastel.jpg);
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	text-align: center;
	width: 70%;
	border: 2px solid black;
	border-radius: 12px;
}

.field {
	display: flex;
	flex-direction: column;
	align-items: center;
}


label {
	margin-bottom: 5px;
}

input {

	height: 84px;
	padding: 10px;
	margin: 5px 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	text-align: center;
	font-size: 36px;
	width: 30%;
	overflow: hidden;
	-moz-appearance: textfield;

}

button {
	margin: 20px 5px;
}

.px-4 img {
	max-width: 100px;
	display: flex;
	justify-items: center;
	align-self: center;
	margin-bottom: 15px;
}

.clear {
	display: none;
}

@media only screen and (max-width: 450px) {
	.text-center {
		background-image: none;
		border: none;
	}
}