* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.k-content {
	width: 64%;
	height: auto;
	overflow: hidden;
	margin: 100px auto;
	background-color: rgba(240, 248, 255, 0.5);
	border-radius: 30px;
}

.k-content * {
	margin: 5px 20px;
}

.k-content header {
	padding-bottom: 25px;
	border-bottom: 1.5px solid rgba(249, 204, 226, 0.7);
}

.k-content header h1 {
	float: left;
	font-size: 3em;
	color: rgb(249, 204, 226);
	text-shadow: 3px 3px 3px aquamarine;
}

.k-content header input[type=search] {
	position: relative;
	margin-top: 25px;
	font-size: 1.1em;
	left: 33%;
	float: left;
	background-color: transparent;
	border: 2px solid rgb(249, 204, 226);
	border-radius: 10px;
	color: gray;
	padding-left: 5px;
	outline: none;
	transition: 0.5s background-color;
}

input[type=search]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.k-content header input[type=search]:hover,
.k-content header input[type=search]:focus {
	background-color: rgba(240, 248, 255, 0.3);
	transition: 0.5s background-color;
}

.k-content header input[type=submit] {
	cursor: pointer;
	position: relative;
	top: 17.7px;
	left: 270px;
	background-color: rgba(249, 204, 226, 0.5);
	background-size: 100%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	outline: none;
	transition: 0.3s background-color;
}

.k-content header input[type=submit]:hover {
	background-color: rgba(249, 204, 226, 1);
	transition: 0.3s background-color;
}

.k-content header input[type=submit]:active {
	background-color: pink;
}

.k-info {
	margin: 20px;
	max-height: 1010px;
	overflow: hidden;
}

.k-info aside {
	float: left;
	width: 30%;
	height: 745px;
	background-color: rgba(240, 248, 255, 0.5);
	border-radius: 15px;
}

.k-info div {
	position: relative;
	top: 5px;
	left: 310px;
	width: 62%;
	height: 745px;
	border-radius: 15px;
}

.k-info div section {
	position: relative;
	right: 20px;
	width: 100%;
	height: 234.8px;
	background-color: rgba(240, 248, 255, 0.5);
	border-radius: 15px;
	margin-bottom: 20px;
}

.k-info>section {
	margin-top: 30px;
	width: 95.5%;
	height: 234.8px;
	background-color: rgba(240, 248, 255, 0.5);
	border-radius: 15px;
	overflow: hidden;
}

.k-info div::after {
	content: "";
	display: block;
	clear: both;
}

.k-content footer {
	position: relative;
	margin-top: 23px;
	left: 20px;
	width: 91.5%;
	height: 100px;
	border-top: 1.5px solid rgba(249, 204, 226, 0.7);
}
