/* @import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap"); */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
	color: #fff;
}
body {
	font-family: Arial;
	font-size: 14px;
	overflow: scroll;
	background: #000;
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}
.container {
	background: #000;
	color: #fff;
	padding: 80px 15px;
}
.font-link {
	position: absolute;
	top: 10px;
	right: 15px;
	padding: 5px;
	font-size: 20px;
	font-family: "Dancing Script", cursive;
	text-decoration: none;
}
/* .change-text {
	color: #f27d1e;
} */
.font-btn {
	font-size: 20px;
	padding: 5px;
	background: #f27d1e;
	color: #fff;
}
.main-heading {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.fresh-text {
	color: #f27d1e;
	font-style: oblique;
	font-family: "Times New Roman", Times, serif;
}
.main-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 5px solid #f27d1e;
	border-radius: 25px;
	padding: 70px 0px;
	margin-inline: 100px;
	/* height: 70vh; */
}

.quote-main::before {
	content: open-quote " ";
}
.quote-main::after {
	content: close-quote;
}
.blockquote p {
	max-width: 50pc;
	font-size: 2rem;
	line-height: 1.6em;
	text-align: center;
	transition: color 5s;
}
.blockquote-footer {
	margin-top: 10px;
	font-size: 1.5rem;
	text-align: center;
	transition: all 1s;
}
.dash-text::before {
	content: "- ";
}
cite {
	color: #f27d1e;
}

.btn {
	width: 150px;
	height: 50px;
	margin-top: 50px;
	border: 5px solid #f27d1e;
	border-radius: 15px;
	background: #000;
	color: #fff;
	transition: all 0.5s;
}
.btn:hover {
	background: #f27d1e;
	cursor: pointer;
}

.btns {
	display: flex;
	gap: 30px;
	justify-content: center;
}
.footer-mark {
	position: absolute;
	padding-left: 15px;
	bottom: 10px;
	right: 20px;
	font-size: 1.2rem;
	color: #f27d1e;
	border-left: 3px solid #f27d1e;
	/* transition: all 1s; */
}
@media screen and (max-width: 600px) {
	.blockquote p {
		text-align: center;
		font-size: 2rem;
	}
	.main-heading {
		margin-bottom: 40px;
	}
	.container {
		padding: 20px 10px;
	}
	.main-content {
		margin-inline: 0px;
	}
	.quote-main {
		padding: 10px;
	}
}
