body {
	background-image: url("background.jpg")
}
h1 {
	margin: 5px;
	font-size: 60px;
	text-align: center;
}
h2 {
  margin: 0px;
	margin-top: 60px;
	font-size: 60px;
	text-align: center;
	padding-top: 30px;
}
h3 {
  margin: 0px;
	font-size: 40px;
	text-align: center;
	padding-top: 30px;
}
p {
  margin: 5px;
	font-size: 30px;
	text-align: center;
	color: rgb(0,0,0,0.87);
	font-weight: 525;
}
a {
	margin: 0px;
	font-size: 20px;
	text-align: center;
	font-weight: 525;
}
img {
	align: center;
	height: 400px;
	image-rendering: optimizeSpeed;
}
.pixelated {
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: pixelated;
}
.width {
	height: auto;
	width: 100%;
}
button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 30px;
	transition: 0.5s;
	cursor: pointer;
	border-radius: 2px;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.1);
}
button:hover {
	background-color: #429342;
}
button:active {
	background-color: #54BF57;
	transition: 0.1s;
}
.solve {
	background-color: coral;
	border-radius: 5px;
}
.solve:hover {
	background-color: rgb(200, 100, 0);
}
.solve:active {
	background-color: rgb(255, 150, 0);
}
.error{
	display: block;
	height: 100%;
	width: 70%;
	background-color: #B60000;
	color: white;
	margin: auto;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	font-family: arial;
}
.flip-horizontal {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
	display: inline-block;
}
.break {
	word-wrap: break-word;
}
.SpaceToBreathe {
	padding: 200px;
}
@media (max-width: 700px) {
	h1 {
		font-size: 38px;
	}
	h2 {
 	font-size: 35px;
	 padding-top: 30px;
	 margin-top: 0px;
	}
	h3 {
	 font-size: 25px;
	 padding-top: 20px;
	}
	p {
	 font-size: 20px;
	}
	a {
	 font-size: 15px;
	}
	img {
	 height: 300px;
	}
	button {
	 font-size: 20px;
	}
	.error{
	 font-size: 30px;
	}
	.break {
	 word-wrap: break-word;
	 width: 100%;
	 text-align: center;
	}
	.SpaceToBreathe {
		padding: 75px;
	}
}
