/* Overall Styles */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	background-color: navy;
	font-family: 'Roboto', sans-serif;
}

.buttonTall {
	font-size: 1.75rem;
	height: 80px;
}

h2 {
	font-size: 1.5rem;
}

.buttonShort {
	font-size: 1.75rem;
	height: 50px;
}
.inputValue {
	height: 130px;
	width: 110%;
	margin: 0 auto;
	font-size: 1.85rem;
	text-align: center;
	background-color: navy;
	border: 10px solid white;
	border-radius: 5%;
	color: white;
}

.inputValue::-webkit-outer-spin-button,
.inputValue::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.inputValue[type='number'] {
	-moz-appearance: textfield; /* Firefox */
}

.inputAndResults {
	margin: 0 auto;
}

#weightResult {
	font-size: 10rem;
	color: white !important;
}

#horseTypeButton {
	font-size: 1.25rem;
}

.inLabel {
	color: white;
	font-size: 1.25rem;
}

img {
	width: 250px;
	height: auto;
	margin: 0 auto;
}
h6 {
	font-size: 0.75rem;
}

@media only screen and (max-width: 571px) {
	.buttonShort {
		font-size: 1rem;
		height: 28px;
		text-align: center;
		line-height: 1rem;
	}

	.buttonTall {
		font-size: 1.25rem;
		height: 50px;
	}

	#weightResult {
		font-size: 5rem;
		color: white !important;
	}
	.inputValue {
		height: 70px;
		width: 110%;
		margin: 0 auto;
		font-size: 1.25rem;
		text-align: center;
		background-color: navy;
		border: 5px solid white;
		border-radius: 5%;
		color: white;
	}

	#horseTypeButton {
		font-size: 1rem;
	}

	img {
		width: 250px;
		height: auto;
		margin: 0 auto;
	}
}
