body
{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: #352b48;
	font-family: 'poppins', sans-serif;
	font-style: italic;
	
}
.calendar{
	position: relative;
	background-color: aliceblue;
	background-size:450px 500px;
	width: 800px;
	height: 450px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 15px solid #fff;
	box-shadow: 0 15px 35px rgba(0,0,0,.8);
	
}
.calendar .date{
	width: 350px;
	padding: 30px;
	box-sizing: border-box;
	
}
.calendar .date h3{
	margin: 0 0 20px;
	padding: 0;
	font-family: Courier New;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	
}
.calendar .date .days{
	display: flex;
	flex-wrap: wrap;
	
}
.calendar .date .days .day{
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	color:aqua;
	
}

.calendar .date .days .active{
	background: red;
	color: green;
	cursor: pointer;
	border-radius: 50%;
		
}
.calendar .date .days .day:hover{
	background: yellow;
	color: black;
	cursor: pointer;
	border-radius: 50%;
	
		
}
.calendar .image{
	position: absolute;
	top: 0;
	right: 0;
	width: 350px;
	height: 100%;
	background: #000;
	
}
.calendar .image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	.calendar .image img{
		position: absolute;
		object-fit: cover;
	}




































