* {
	margin: 0;
	padding: 0
}

:root {
	--color-primary: #fd9abe;
	--color-secondary: #ffbad5;
	--color-tertiary: #f7dce7;
	--color-accent: #ffe5f0;
	--color-background: #fff4fa;
	--color-gradient: linear-gradient(135deg, #fdc8df, #fdc8df 35%, #ffe5f0 70%, #ffe5f0)
}

body {
	background-attachment: fixed;
	background: var(--color-tertiary);
	background-image: linear-gradient(hsla(0, 0%, 100%, .7) .1em, transparent 0), linear-gradient(90deg, hsla(0, 0%, 100%, .7) .1em, transparent 0);
	background-size: 2em 2em;
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	flex-direction: column;
	height: 100vh !important;
	height: 100dvh !important;
	letter-spacing: 1px;
	overflow: hidden !important;
	position: fixed !important;
	width: 100vw !important;
	width: 100dvw !important;
	scrollbar-gutter: stable both-edges
}


.loading-screen,
.pet-icon,
.selected-pet-info,
.user-avatar,
.user-info-container,
.user-info-display,
.user-info-display .user-avatar,
body {
	align-items: center;
	display: flex;
	justify-content: center
}

.loading-screen {
	background: linear-gradient(135deg, var(--color-primary) 0, var(--color-secondary) 50%, var(--color-accent) 100%);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transition: opacity .5s;
	width: 100%;
	z-index: 10000
}

.loading-content {
	color: #fff;
	text-align: center;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, .8)
}

.loading-logo {
	animation: 2s ease-in-out infinite pulse;
	font-size: 80px;
	margin-bottom: 20px
}

.loading-text {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 30px;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, .8)
}

.loading-bar {
	background: hsla(0, 0%, 100%, .3);
	border-radius: 4px;
	height: 8px;
	overflow: hidden;
	width: 300px
}

.loading-progress {
	animation: 3s ease-in-out loadingProgress;
	background: linear-gradient(90deg, #27ae60, #2ecc71);
	height: 100%
}

@keyframes loadingProgress {
	0% {
		width: 0
	}

	to {
		width: 100%
	}
}
