@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
	box-sizing: border-box;
}

body {
	background-color: #f4f4f4;
	font-family: 'Montserrat', sans-serif;
	margin: 0;
}

:root {
	--heartColor: #fb356d;
}

section {
	padding: 50px 0;
}

#loading-animation-container {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	background-color: #f4f4f4;
}

.rhombus {
	margin: auto;
	margin-top: 35vh;
	border-radius: 10px;
	height: 75px;
	width: max-content;
	float: center;
}

.loading-text {
	position: relative;
	top: 130px;
	left: -10px;
	font-size: 17px;
	color: #EA4C89;
	font-weight: 600;
}

.rhombus:before {
	content: "";
	position: absolute;
	background: #EA4C89;
	height: 50px;
	width: 50px;
	z-index: 0;
	margin-top: 15px;
	margin-left: 15px;
	transform: rotate(45deg);
}

.rhombus .circle1 {
	content: "";
	position: absolute;
	background: #EA4C89;
	height: 50px;
	width: 50px;
	z-index: 1;
	border-radius: 50%;
	animation-duration: 2s;
	animation-name: change1;
	animation-iteration-count: infinite;
}

.rhombus .circle2 {
	content: "";
	position: absolute;
	background: #EA4C89;
	height: 50px;
	width: 50px;
	z-index: 1;
	margin-left: 30px;
	border-radius: 50%;
	animation-duration: 2s;
	animation-name: change2;
	animation-iteration-count: infinite;
}



@keyframes change1 {

	0%,
	25% {
		margin-top: 0px;
		margin-left: 0px;
	}

	50%,
	75% {
		margin-top: 30px;
		margin-left: 30px;
	}
}

@keyframes change2 {

	25%,
	50% {
		margin-top: 30px;
		margin-left: 0px;
	}

	75%,
	100% {
		margin-top: 0px;
		margin-left: 30px;
	}
}


.progress-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: auto;
}

.progress {
	background-color: #d8d8d8;
	border-radius: 20px;
	position: relative;
	height: 30px;
	width: 80vw;
	max-width: 650px;
}

.progress-done {
	background: #F2709C;
	box-shadow: 0 3px 3px -5px #F2709C, 0 2px 5px #F2709C;
	border-radius: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 75%;
	position: relative;
	overflow: hidden;
}

.cod {
	position: absolute;
	top: 0;
	left: -250%;
	width: 200%;
	height: 100%;
	background: linear-gradient(to left, #f270a2, #f35959, #F2709C);
	z-index: 10;
	animation: color 3s ease-in infinite;
}

@keyframes color {
	0% {
		left: -250%;

	}


	100% {
		left: 2000%;
	}
}

span {
	position: absolute;
	left: 47%;
	top: 6px;
	z-index: 99;
}

.info {
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	width: 100%;
	margin-top: 25px;
}

.info>* {
	width: fit-content;
	display: inline;
}

.info h4 {
	margin: 13px 0;
	font-weight: 600;
}

.info-text {
	display: inline;
	font-weight: 500;
	margin-left: 3px;
}

.heading-cont {
	width: fit-content;
	padding: 25px 0;
}

.heading-centre>* {
	text-align: center;
}

.heading-centre {
	margin: auto;
}

.main-heading {
	font-size: 20px;
	color: #EA4C89;
	position: relative;
	margin-bottom: 35px;
	text-shadow: 0px 0px 20px #ea4c89b1;
	font-weight: 500;
}


#secret-button {
	position: absolute;
	bottom: -10px;
	left: 10%;
	width: 80%;
	height: 1px;
	background-color: #EA4C89;
	opacity: .65;
	box-shadow: 0px 0px 17px 1px #EA4C89;
}

#images-section {
	margin-top: 300px;
	position: relative;
}

.image-class {
	display: block;
	margin: 30px auto;
	width: 95vw;
}

.rotate {
	transform: rotate(-90deg);
}

#to-do-list {
	display: none;
}

.info {
	width: 80vw;
	max-width: 650px;
	margin: auto;
	margin-top: 35px;
}


.heart-cont {
	position: relative;
	width: 75px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.heart-cont #actual-heart {
	width: 50%;
	display: block;
	margin: auto;
}

.beat {
	animation: heart 1s ease-out infinite;

}

@keyframes heart {
	0% {
		scale: 1;
	}

	50% {
		scale: 1.2;
	}

	100% {
		scale: 1;
	}
}

.notes {
	width: 1px;
	height: 1px;
	margin: auto;
	background-color: #F2709C;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all 0.5s ease-in;
}

.bubble {
	animation: bubble 1.5s linear;
}

@keyframes bubble {
	0% {
		transform: translate(0, 0);
	}

	25% {
		transform: translateX(25px) translateY(-200px);
	}

	50% {
		transform: translateX(25px) translateY(-400px);
	}

	75% {
		transform: translateY(-650px);
	}

	100% {
		transform: translateX(45px) translateY(-800px);
	}
}

.content {
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	width: 0;
	height: 0;
	border-radius: 1px;
}

.content h3 {
	text-align: center;
	font-weight: 600;

}

.content p {
	margin-top: 15px;
	font-size: 16px;
	line-height: 25px;
}

.content-now {
	width: 95vw;
	max-width: 750px;
	border-radius: 15px;
	height: max-content;
	padding: 20px;
	background-color: #333333 ;
	color: aliceblue;
}

#dont {
	width: 75vw;
	text-align: center;
	padding-bottom: 30px;
}
legend{
	border: 2px solid aliceblue;
}

.diary hr{
	height: 1px;
	border: none;
	background-color: #f270a2;
	margin: 25px 0;
}

.date{
	font-size: 14px;
}

.dummy-text{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: #d8d8d8;
	color: #d8d8d8;
}

.remage img, .ss img{
	width: 100%;
}

.ss img{
	margin:0 0 ;
}

.ss{
	background-color: black;
}

.lyrics{
	list-style: none;
	padding: 15px 0;
	border-top: 1px solid silver;
}

.lyrics li{
	margin: 12px 0;
}

#maharani{
	width: 100%;
	margin: 12px auto;
}

