@import url('https://fonts.googleapis.com/css2?family=B612:ital,wght@0,700;1,400&display=swap');

body {
	display: block;
	color: #05396b;
}
h1 {
	font-family: 'B612', sans-serif;
}
p {
	font-family: 'B612', sans-serif;
	font-style: italic;
	color: white;
	font-weight: bold;
}
span {
	background-color: #05396b;
	padding: 2px;
	border-radius: 4px;
}
/* h3 {
  background-color: #05396b;
  padding: 2px;
  border-radius: 4px;
} */
label,
h3 {
	font-size: 23px;
	font-family: 'B612', sans-serif;
	margin-top: 15px;
	color: white;
}
.container {
	background-color: #05396b;
	display: flex;
	align-items: center;
	width: 40%;
	margin: auto;
	flex-direction: column;
	border-radius: 10px;
	border: 4px solid black;
	padding: 10px;
}
.box-1 {
	flex: 1;
	height: 30px;
	text-align: center;
}
.box-2 {
	flex: 1;
	height: 100px;
	text-align: center;
}
.box-3 {
	flex: 1;
	height: 200px;
}

input {
	width: 300px;
	height: 30px;
	margin: 10px;
	border: 2px solid black;
	padding: 4px;
}

.btn {
	height: 30px;
	width: 90px;
	background-color: #05396b;
	color: white;
	font-weight: bold;
	border: 2px solid black;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
}
.btn:active {
	transform: scale(0.95);
}
table,
td,
tr,
th {
	border: 1px solid black;
	font-size: 18px;
	background-color: #05396b;
	padding: 5px;
	color: white;
}
tr {
	width: 300px;
	font-size: 20px;
}
td {
	padding: 10px;
}

.er {
	font-family: 'B612', sans-serif;
	font-style: italic;
	color: #ef4444;
	font-weight: bold;
	padding: 10px;
}
