body {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	font-family: 'Inter', sans-serif !important;
	background: #F5F5F7;

}

main {
	flex-grow: 0;
	flex: 1 1 0px;
	text-align: left;
	padding: 96px 106px;
}

footer {
	flex-grow: 0;
	flex: 1 1 0px;
	text-align: center;
}

main img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	pointer-events: none;
}

main h1 {
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -0.02em;
	color: #101828;
	margin-top: 15px;
	text-wrap: balance;
}

main p {
	margin-top: 15px;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #101828;
	text-wrap: balance;
}

footer img {
	width: 762px;
	height: 762px;
	pointer-events: none;
	animation: rotation 30s infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.socials {
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

header {
	display: flex;
	justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
	body {
		flex-direction: column;
		background: url('./img.png?gg');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		backdrop-filter: blur(15px);
		height: 100vh;
		transition: all 1s;
		overflow: auto;
	}

	footer img {
		display: none;
	}

	footer {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
		flex-direction: row;
	}

	main {
		padding: 56px 66px;
	}
}

details {
	margin: 0 auto;
	background: transparent;
	margin-bottom: .5rem;
	border-radius: 5px;
	overflow: hidden;
}

summary {
	padding: 1rem;
	display: block;
	background: transparent;
	padding-left: 2.2rem;
	position: relative;

}

summary:before {
	content: '';
	border-width: .4rem;
	border-style: solid;
	border-color: transparent transparent transparent #101828;
	position: absolute;
	top: 1.3rem;
	left: 1rem;
	transform: rotate(0);
	transform-origin: .2rem 50%;
	transition: .25s transform ease;
}

/* THE MAGIC 🧙‍♀️ */
details[open]>summary:before {
	transform: rotate(90deg);
}


details summary::-webkit-details-marker {
	display: none;
}

details>ul {
	padding-bottom: 1rem;
	margin-bottom: 0;
}