@import url('https://fonts.googleapis.com/css2?family=Karla:wght@800&display=swap');
body {
	background-color: #cdd1cc;
	font-family: 'Karla', sans-serif;
	/* background-color:  */
}
.container-1 {
	display: flex;
	flex-direction: column;
	/* width: 1000px; */
	align-items: center;
	border-radius: 50px;
	background: #cdd1cc;
	box-shadow: 20px 20px 60px #aeb2ad, -20px -20px 60px #ecf0eb;
	/* border: 4px solid black; */
	margin: 44px 125px 0 125px;
	height: 610px;
	/* border-radius: 6px; */
}

.container h1 {
	text-align: center;
	font-size: 20px;
}
.output {
	/* border: 1px solid black; */
	width: 650px;
	border-radius: 20px;
	background: #cdd1cc;
	box-shadow: inset 5px 5px 10px #aeb2ad, inset -5px -5px 10px #ecf0eb;
	margin-bottom: 20px;
	text-align: center;
	padding: 30px;
	font-size: 30px;
	font-weight: bold;
}
.container-2 {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.box-1-1 {
	margin: 20px 150px 0 0;
}
.box-1 {
	flex: 1;
	margin-top: 20px;
}
label {
	font-size: 21px;
	margin: 5px;
}
input {
	width: 210px;
	height: 30px;
	margin: 10px 0 7px 0;
	border: 3px solid black;
	border-radius: 3px;
	font-weight: bold;
}
img {
	width: 350px;
	height: 250px;
}
nav {
	background-color: aqua;
	margin: 0;
}
.main {
	border: 1px solid black;
}
.footer {
	border: 1px solid black;
	height: 80px;
}

.btn {
	height: 40px;
	width: 120px;
	margin-top: 10px;
	background-color: inherit;
	border: 2px solid black;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s;
	font-weight: bold;
	font-size: 14px;
}
.btn:hover {
	transform: scale(0.9);
}
