* {
	font-family: 'Comic Sans MS', cursive;
}
body {
	background: radial-gradient(ellipse at center, #3c6382 0%, #0a3d62 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100vh;
	width: 100%;
}
h1 {
	margin: 40px;
	color: #f8c291;
	text-shadow: 0 0 5px #82ccdd;
	font-size: 50px;
}
button {
	margin-bottom: 20px;
	height: 25px;
	width: 80px;
	border: 0;
	border-radius: 5%;
	background: #079992;
	color: #fad390;
	transition-duration: 0.3s;
}

button:hover {
	background: #fad390;
	color: #079992;
}
input {
	height: 20px;
	width: 20px;
	background: none;
	border: none;
	text-align: center;
	font-size: 15px;
}
.container {
	margin-top: 50px;
	height: 315px;
	width: 315px;
	border: 1px solid #0c2461;
	background: #f1e5ce;
	display: flex;
	flex-direction: column;
	transform: scale(1.3);
	box-shadow: 0 0 5px #f8c291;
}

.line {
	height: 35px;
	width: 100%;
	display: flex;
}

.line div {
	border: 0.01em solid #82ccdd;
	width: 35px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #295729;
}

.line:nth-child(3) div,
.line:nth-child(6) div {
	border-bottom-color: #0c2461;
}

.line div:nth-child(3),
.line div:nth-child(6) {
	border-right-color: #0c2461;
}
