@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
	background: url('/imgs/wallllllpaper.jpg') no-repeat center center/cover;
	background-color: #fef6f3;
}
body {
	font-family: Poppins, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	opacity: 0;
	animation: fadeIn 2s ease-in forwards;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
}
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.profile-container {
	width: 60%;
	height: auto;
	max-width: 900px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.italic {
	font-style: italic;
}

.small {
	font-size: 0.7em;
}

.xsmall {
	font-size: 0.5em;
	font-style: italic;
}

.top-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	flex-grow: 6;
	margin: 0;
	padding: 0;
}

.column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	background: #fff;
	text-align: center;
	font-size: 0.75em;
	padding: 10px;
}

.column img {
	width: 8em;
	height: auto;
	border-radius: 5%;
	margin-bottom: 10px;
}

.profile-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
}

.abtmetable,
.pettable {
	width: 90%;
	max-width: 200px;
	font-size: 1.2em;
	border: 1px solid #b4dcf4;
	background: #fafafa;
}

.abbody,
.petbody {
	margin: 0;
	padding: 0;
}

.toptable {
	font-size: 1.2em;
	border-bottom: 2px solid #b4dcf4;
	padding: 0;
	margin: 0;
}

.middle-section {
	height: auto;
	/* min-height: 50px;*/
	background: #b4dcf4;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bottom-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	flex-grow: 3;
	text-align: center;
	margin: 0;
	padding: 0;
	border-top: 2px dashed #b4dcf4;
}

.column p img {
	width: 1em;
	height: auto;
}

.colors {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 10px;
}

.color1,
.color2,
.color3 {
	width: 30px;
	height: 30px;
}

.color1 {
	background-color: #f4bcca;
}

.color2 {
	background-color: #b4dcf4;
}

.color3 {
	background-color: #d0d09c;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul li {
	font-size: 1em;
}

.now-playing {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: #d0d09c;
	padding: 10px;
	border-radius: 1em;
	color: #fff;
	gap: 10px;
}

.imglinks {
	display: flex;
	align-items: left;
	text-align: left;
	justify-content: space-between;
	gap: 10px;
}

.aligncenter {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	flex-grow: 1;
}

.nowpara {
	font-weight: bold;
	font-size: 1.2em;
	margin: 0 0 5px 0;
}

#tracktitle {
	font-size: 1.2em;
	font-weight: bold;
	display: inline;
	margin: 0;
}

#trackartist {
	font-size: 0.9em;
	display: inline;
	text-align: left;
}

#trackart {
	width: 5em;
	height: auto;
	border-radius: 5px;
	display: block;
	margin: auto 0;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	transform: scale(1.1);
	transition: transform 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.archie:hover {
	color: #366684;
}

.sociallink {
	font-size: 0.88em;
}

.sociallink:hover {
	color: #366684;
}

.pink {
	color: #c5798c;
}

hr {
	border: 0;
	height: 2px;
	width: 100%;
	background-color: #f4bcca;
	padding: 0;
	margin: 0;
}

@media (min-width: 768px) {
	body {
		transform: scale(1.2) translate(-8.33%, 0);
		transform-origin: top left;
		height: calc(100vh / 1.29);
	}
}

@media (max-width: 1200px) {
	.profile-container {
		width: 70%;
	}
}

@media (max-width: 992px) {
	.column img {
		width: 6em;
	}

	.profile-img {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 768px) {
	.profile-container {
		width: 90%;
	}

	.top-section {
		grid-template-columns: 1fr;
	}

	.bottom-section {
		grid-template-columns: 1fr;
	}

	.column {
		font-size: 0.9em;
	}

	.now-playing {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#trackart {
		margin: 10px 0;
	}
}

@media (max-width: 768px) {
	.now-playing {
		margin-top: 10px;
	}

	p .small {
		padding: 10px;
	}

	.row {
		flex-direction: row;
		padding-bottom: 5px;
	}

	.top-section .column p:nth-of-type(1),
	.top-section .column p:nth-of-type(2),
	.top-section .column p:nth-of-type(3) {
		display: inline-block;
		margin: 0 5px;
		text-align: center;
		flex-direction: row;
	}

	.top-section .column p:nth-of-type(3) {
		margin-bottom: 10px;
	}

	.column {
		padding: 5px;
	}

	.hobbies {
		width: 65%;
	}

	.abtmetable,
	.pettable {
		width: 70%;
		max-width: none;
		margin: 10px;
		padding: 5px;
	}

	.colors {
		gap: 3px;
	}

	.color1,
	.color2,
	.color3 {
		width: 20px;
		height: 20px;
	}

	.sociallink {
		font-size: 0.8em;
	}

	.bottom-section {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto auto;
		text-align: center;
	}

	.bottom-section .column:nth-child(3) {
		grid-column: 1;
		grid-row: 2;
	}

	.bottom-section .column:nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}
}

@media (max-width: 400px) {
	body {
		font-size: 0.9em;
	}

	.nowpara {
		font-size: 0.9em;
	}

	#tracktitle {
		font-size: 1.2em;
	}

	#trackartist {
		font-size: 0.8em;
	}
}
