.container{
	display:flex;
	justify-content:space-evenly;
}
.main{
	background-image:url("https://petapixel.com/assets/uploads/2022/01/Edit.Photo-is-a-Newly-Launched-Free-Web-Based-Photo-Editor.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size:100% 100%;
	height:300px;
	width:80%;
	margin-left:60px;
}
.info{
	background-color:#F8BBD0;
	height:630px;
	width:100%;
}
.photo{
	display:flex;
	justify-content:end;
}
.pho{
	height:630px;
	width:100%;
}
#sta-btn:hover{
	opacity:0.7;
}
#name{
	font-size:60px;
}
#img{
	height:80px;
	width:80px;
	margin-bottom:20px;
	margin-top:30px;
}
#editor{
	display:none;
	width:100%;
	height:650px;
	background-color:#FF8DAA;
	position:absolute;
	top:0;
	left:0;
}
#start:checked ~ #editor{
	display:block;
}
#start:checked ~ #startscreen{
	display:none;
}
.filter{
	position:absolute;
	top:80%;
	left:10px;
}
.filter label{
	margin:10px;
	padding:10px 20px;
	background:#FF4DC4;
	box-shadow:0 0 #FF2DAA,
			   0 0 #FF00C8,
			   0 0 #FF0099;
	color:indigo;
	border:2px solid #FF2DAA;
	font-weight:bold;
	border-radius:10px;
	margin-left:15px;
}

#normal:checked ~ #editor .slide{
	filter:none;
}
#gray:checked ~ #editor .slide{
	filter:grayscale(100%);
}
#sepia:checked ~ #editor .slide{
	filter:sepia(80%);
}
#blur:checked ~ #editor .slide{
	filter:blur(3px);
}
#bright:checked ~ #editor .slide{
	filter:brightness(150%);
}
.slider {
    width: 300px;
    margin: 20px auto;
    position: relative;
}

/* Hide all radio buttons */
.slider input {
    display: none;
}

/* Images */
.slide {
    width: 530px;
    height: 400px;
    position: absolute;
	right:250px;
	margin-top:40px;
	margin-left:50px;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 12px;
    
}
#h1{
	float:right;
	background:#F3AFBB;
	box-shadow:2px 2px 15px #FF2DAA;
	height:160px;
	width:40%;
	margin-right:100px;
	font-size:100px;
	padding-left:70px;
	padding-top:30px;
	margin-top:150px;
}
#play-btn{
	
}

/* Show image when radio is checked */
#s1:checked ~ .slides #img1 { opacity: 1; }
#s2:checked ~ .slides #img2 { opacity: 1; }
#s3:checked ~ .slides #img3 { opacity: 1; }

/* Navigation buttons */
.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0%;
	margin-top:40px;
	right:500px;
    transform: translateY(-50%);
}

.nav label {
    background: rgba(255,255,255,0.6);
    padding: 10px;
	margin-left:50px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}
.side{
	
}
.save-btn{
	background-color:#FF1493;
	color:white;
	padding:10px 40px;
	border:none;
	box-shadow:2px 2px 14px #FF4DC4;
	border-radius:10px;
	border-radius:8px;
	transition:1s;
	position:absolute;
	top:60%;
	left:67.5%;
}
.save-btn:hover{
	opacity:0.5;
}
.img{
	height:400px;
	width:60%;
}