@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Freckle+Face&display=swap');

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

html {
	font-size: 62.5%;
	box-sizing: border-box;
}

body {
	font-family: 'Chewy', sans-serif;
	color: #eee;
	background-color: #bb5858;
	/* background-color: #60b347; */
}

/* LAYOUT */
header {
	position: relative;
	height: 35vh;
	border-bottom: 7px solid #eee;
}

main {
	height: 65vh;
	color: #eee;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.left {
	width: 52rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.right {
	width: 52rem;
	font-size: 2rem;
}

/* ELEMENTS STYLE */
h1 {
	font-size: 6rem;
	text-align: center;
	position: absolute;
	width: 100%;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.number {
	background: #eee;
	color: #333;
	font-size: 7rem;
	width: 14rem;
	/* padding: 1rem 0rem; */
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	border-radius: 10px;
}

.between {
	font-size: 2.75rem;
	position: absolute;
	top: 2rem;
	right: 2rem;
}

.again {
	position: absolute;
	top: 2rem;
	left: 2rem;
}

.guess {
	background: none;
	border: 4px solid #eee;
	font-family: inherit;
	color: inherit;
	font-size: 6rem;
	padding: 1.5rem;
	width: 20rem;
	text-align: center;
	display: block;
	margin-bottom: 3rem;
	border-radius: 10px;
}

.btn {
	border: none;
	border-radius: 10px;
	background-color: #eee;
	color: #222;
	font-size: 3rem;
	font-family: inherit;
	padding: 1rem 1rem;
	cursor: pointer;
}

.btn:hover {
	background-color: #ccc;
}

.message {
	font-size: 3rem;
	margin-bottom: 8rem;
	height: 3rem;
}

.label-score {
	margin-bottom: 2rem;
}
