@font-face {
	font-family: "Eglantine";
	src: url("/static/font/eglantine.ttf") format("truetype");
}

@font-face {
	font-family: "LittleLordFontleroy";
	src: url("/static/font/LittleLordFontleroy.ttf") format("truetype");
}

@font-face {
	font-family: "CooperBlack";
	src: url("/static/font/CooperBlack.ttf") format("truetype");
}

@font-face {
	font-family: "Kaylani";
	src: url("/static/font/Kaylani.ttf") format("truetype");
}

html {
	height: 100%;
}

body {
	margin: 0;
	background-image: url("/static/img/pink_background.jpg");
	height: 100%;
}

ul {
	list-style-type: none;
	padding: 0;
}

pre {
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.clickable {
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}
.clickable:hover {
	box-shadow: 3px 3px;
	background-color: rgba(163, 124, 136, 0.9);
	transform: translate(-3px, -3px);
}
.clickable:active {
	transform: translate(0px, 0px);
	box-shadow: 0px 0px;
	transition: all 0.04s ease-in-out;
}

/* CONTAINER PREVIEW */

.popup {
	display: flex;
	position: fixed;
	top: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 3;
	transition: all 0.3s ease-in-out;
	background-color: rgba(
		255,
		255,
		255,
		0.01
	); /* this prevents leaking of pointer events */
}

/* DUCK BUTT */

.duck-popup {
	z-index: 10;
}

.duck-popup img {
	max-width: 40%;
	max-height: 40%;
	object-fit: contain;
	transition: all 0.3s ease-in-out;
}
.duck-popup p {
	text-align: center;
	margin: 0;
	font-family: "LittleLordFontleroy";
	font-size: 40pt;
	transition: all 0.3s ease-in-out;
}

/* CONTAINER LEFT */

#container-left nav ul .menu-class {
	display: flex;
	margin: 6px;
	background-color: rgba(219, 163, 173, 0.9);
}
#container-left nav ul .menu-class p {
	text-align: center;
	font-family: "LittleLordFontleroy";
	font-size: 30pt;
	margin: 10px;
}
#container-left nav ul .menu-class img {
	width: 6vh;
	max-width: 100px;
}

/* BANNER */

#banner {
	position: sticky;
	padding: 3px;
	box-sizing: border-box;
	animation: pulse 3.5s infinite;
	margin: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	text-align: center;
	font-family: "CooperBlack";
	font-size: max(1.8vw, 13pt);
	color: rgb(42, 28, 30);
	text-wrap: wrap;
}

@keyframes pulse {
	0%,
	100% {
		background-color: rgba(222, 174, 230, 0.85);
	}
	50% {
		background-color: rgba(148, 115, 225, 0.85);
	}
}

/* CLOTHES */
/* ACCESSORIES */

@keyframes pulse2 {
	0% {
		opacity: 0.4;
		transform: scale(1);
	}
	100% {
		opacity: 0.2;
		transform: scale(0.9);
	}
}

/* selling items */

@keyframes scale_up {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.25);
	}
}

@keyframes scale_down {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.75);
	}
}

/* FOOTER */

footer li {
	display: inline;
	margin: 5px;
}
