@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");

html{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
body {
	font-family: "Space Mono", monospace;
	font-weight: 500;
	font-size: 12px;
	background-color: hsl(186, 41%, 84%);
	color: hsl(183, 100%, 15%);
	font-weight: bold; 
}
 .header-logo {
	margin: 4em 0;
	text-align: center;
} 
 .main {
	background-color: hsl(0, 0%, 100%);
	display: flex;
	justify-content: center;
	border-radius: 10px;
}


.left-colum fieldset {
	padding: 0.65em 0;
	margin: 2em 0;
}   

.input-bill {
	background-image: url(/assets/images/icon-dollar.svg);
	background-repeat: no-repeat;
	background-position: 5px;
	text-align: right;
	background-color: hsl(189, 41%, 97%);
	padding: 5px;
	border-radius: 5px;
	width: 100%;
	font-size: 24px;
	color: hsl(186, 5%, 43%);
	border: none;
}
.group-btn {
	display: flex;
	flex-wrap: wrap;
}

.group-btn button,
.btn-custom {
	width: 100px;
	padding: 10px 15px;
	margin: 6px;
	margin-bottom: 0.65em;
	border-radius: 5px;
	background-color: hsl(183, 100%, 15%);
	color: hsl(0, 0%, 100%);
	font-size: 18px;
	text-align: center;
	font-weight: 700;
}
.group-btn button:hover {
	background-color: hsl(172, 67%, 45%);
	color: hsl(183, 100%, 15%);
}

.btn-custom {
	background-color: hsl(189, 41%, 97%);
	color: hsl(183, 100%, 15%);
	border: none;
}
.btn-custom:focus {
	outline: solid hsl(172, 67%, 45%);
	background-color: hsl(189, 41%, 97%);
	cursor: pointer;
}

.input-people {
	background-image: url(/assets/images/icon-person.svg);
	background-repeat: no-repeat;
	background-position: 5px;
	text-align: right;
	background-color: hsl(189, 41%, 97%);
	padding: 5px;
	border-radius: 5px;
	width: 100%;
	font-size: 24px;
	color: hsl(186, 5%, 43%);
	border: none;
}
.text-alert{
	color: red;
	display: none;
}

.right-colum {
	background-color: hsl(183, 100%, 15%);
	border-radius: 10px;
	color: hsl(0, 0%, 100%);
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.right-group {
	display: flex;
	justify-content: space-between;
	margin: 2em auto;
	width: 80%;
}
.right-group span {
	font-size: 12px;
	font-weight: 200;
	color: hsl(184, 14%, 56%);
	display: block;
}

.right-price {
	font-size: 24px;
	color: hsl(172, 67%, 45%);
	font-weight: 700;
}

.btn-reset {
	align-self: center;
	width: 70%;
	margin-bottom: 20px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: hsl(172, 91%, 27%);
	text-transform: uppercase;
	color: hsl(0, 0%, 100%);
	font-weight: bold;
	border: none;
}

.btn-reset:hover {
	background-color: rgb(159, 232, 223);
	color: hsl(183, 100%, 15%);
}

