* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #111;
	color: white;
}

h1 {
	background-color: #000;
}


h1, main {
	padding: 20px;
}

h2 {
	text-align: center;
	/* margin-bottom: 10px; */
}

hr {
	margin: 20px;
    border: none;
    height: 1px;
    background-color: #333;
}

img {
	width: 100px;
}

.bahan-utama {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
	padding: 20px 0;
}

.bahan {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: hsl(0, 0%, 2%);
	/* border: 3px solid rgb(124, 124, 124); */
	/* border-radius: 5px; */
	padding: 15px;
	padding-top: 5px;
	transition: background-color 0.2s ease;
}

.bahan:hover {
    background-color: hsl(0, 0%, 4%);
}

.total-bahan {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.total-bahan .total-text {
	font-weight: bold;
}

label {
	display: flex;
	flex-direction: column;
	align-items: center;
}

input {
	background-color: #111;
	border: 1px solid rgb(114, 114, 114);
	border-radius: 5px;
	color: white;
	padding: 5px;
	width: 100px;
	height: 35px;
	text-align: center;
}

input:focus {
    outline: 2px solid #444;
    border-color: #666;
}

footer {
	text-align: center;
	padding: 20px;
}

footer a {
	color: white;
	font-weight: bold;
}

