body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(t35-lily-17e77.jpg);
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	z-index: -1;
}

.bottom-text {
	position: absolute;
	bottom: 0.5rem;
	font-weight: 400;
	font-size: 1.05rem;
	margin: 0;
}

main .cards-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6rem;
}

main .cards-wrapper.hide {
	display: none;
}

main .card {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	width: 30vw;
	height: 85vh;
	border-radius: 0.5rem;
	box-shadow: 0 2px 20px #00000033;
	overflow: hidden;
}

main .card hr {
	opacity: 0.2;
}

main .card.news {
	gap: 1rem;
	padding: 1rem 1rem 0.2rem;
	overflow-y: auto;
}

main .card .heading {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 1rem 0;
	border-bottom: 0.1rem solid #e6e6e6;
}

main .card .activity {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.7rem;
	border-bottom: 0.1rem solid #ddd;
}

main .card .activity img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 2px 4px #00000033;
}

main .card .activity .details {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

main .card .activity .light {
	color: #777;
	font-size: 1rem;
}

main .card .activity small {
	color: gray;
}

main .card .gallery {
	position: relative;
	height: 55%;
}

main .card .gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

main .card .gallery button.prev {
	position: absolute;
	top: 50%;
	left: 4%;
	transform: translate(-50%, -50%);
	background-color: #0000006f;
	color: #fff;
	font-size: 1.5rem;
	border: none;
	padding: 0.5rem 0.8rem;
	border-radius: 0.3rem;
	cursor: pointer;
}

main .card .gallery button.next {
	position: absolute;
	top: 50%;
	right: 4%;
	transform: translate(50%, -50%);
	background-color: #0000006f;
	color: #fff;
	font-size: 1.5rem;
	border: none;
	padding: 0.5rem 0.8rem;
	border-radius: 0.3rem;
	cursor: pointer;
}

main .card .gallery .name {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	color: #fff;
	transform: translate(-50%, -50%);
	font-size: 1.2rem;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0.3rem 0.5rem;
	border-radius: 0.3rem;
}

main .card .lower-part {
	display: flex;
	height: 100%;
}

main .card .lower-part .stats {
	background-color: #fcfbf6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	border-right: #e4e4e4 0.1rem solid;
}

main .card .lower-part .stats .stats-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 100%;
	border-bottom: #e4e4e4 0.1rem solid;
}

main .card .lower-part .stats .stats-box p {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0;
}

main .card .lower-part .stats .stats-box span {
	font-size: 0.75rem;
}

main .card .lower-part .questions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	width: 100%;
}

[class^="question"] {
	display: none;
}

[class^="question"].active {
	display: flex;
	flex-direction: column;
	align-items: center;
}

[class^="question-form"].active {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	min-width: 20vw;
	padding: 2rem;
	border-radius: 0.5rem;
	box-shadow: 0 2px 20px #00000033;
	margin-bottom: 5rem;
}

[class^="question-form"].active .actions {
	display: flex;
	flex-direction: column;
	width: 100%;
}

[class^="question-form"].active .actions button {
	width: 100%;
}

main .card .lower-part .questions h1 {
	margin: 0.5rem 0;
}

main .card .lower-part .questions h3 {
	margin: 0.5rem 0;
}

main .card .lower-part .questions p {
	font-size: 1.1rem;
	margin: 0;
}

form select, input {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ccc;
	outline: none;
	border-radius: 0.3rem;
	font-size: 1rem;
	margin-bottom: 1rem;
	cursor: pointer;
}

form select option {
	padding: 1rem;
	cursor: pointer;
}

.actions {
	display: flex;
	gap: 1rem;
	padding: 1rem;
}

.btn-pink {
	padding: 0.7rem 2rem;
	min-width: 7rem;
	width: auto;
	border: none;
	background: #c96ec5;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 0.5rem;
	cursor: pointer;
}

.btn-pink:hover {
	opacity: 0.75;
	transition: opacity 0.3s ease-in-out;
}

.btn-gray {
	padding: 0.7rem 2rem;
	min-width: 7rem;
	width: auto;
	border: 1px solid #939393;
	background: #939393;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 0.5rem;
	cursor: pointer;
	opacity: 0.7;
}

.back-btn {
	cursor: pointer;
}

.back-btn:hover {
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
}

.bold {
	font-weight: bold;
}

@media (orientation: portrait) {
	main .card {
		width: 98vw;
		height: 92vh;
	}

	main .card.news {
		display: none;
	}

	main .card .lower-part .stats .stats-box {
		width: 4rem;
	}
}
