*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: cursive;
	color:#1e3d59;
}
body
{
        background-image: url("https://images2.alphacoders.com/261/thumb-1920-26102.jpg");
	background-color:#1e3d59;	
}
h1
{
	text-align: center;
	color:#ffc13b;
}
.center{
	display: flex;
	justify-content: center;
	align-content: center;

}

.main {
	height: 100vh;
}
.box {
    padding-top: 20px;
	width: 450px;
	height: 500px;
	background: #ff6e40;
	border-radius: 30px;
	box-shadow:  0 10px 15px rgba(0 ,0 , 0 0.363);
}
li{
	text-align: center;
	width: 300px;
	padding: 15px;
	color: #1e3d59;
	background: #ffc13b;
	list-style: none;
	margin: 12px ;
	cursor: pointer;
	position: relative;

}
li:hover {
	transform: translate(20px);
}
li::before .li::after{
	content: "";
	position: absolute;
	background: #151515;
	transition:all .4s ;
}
li::before{
	width: 20px;
	height: 100%;
	top: 0;left: -30px;
}
li::after {
	width: 100%;
	height: 2px;
	bottom: 0;left: 0;
}
li:hover::before, li:hover::after{
	background: #00ffff;
	box-shadow: 0 0 10px aqua;
}
