@import url('https://fonts.googleapis.com/css2?family=Short+Stack&display=swap');
/*
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
body {
font-family: 'Fredoka One', sans-serif;
}
 */
/*
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&display=swap');
body {
font-family: 'Baloo 2', cursive;
}
 */
/*
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
body {
font-family: 'Luckiest Guy', cursive;
}
 */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Baloo+2:wght@400;700&display=swap');

h1, h2 {
	font-family: 'Fredoka One', sans-serif;
}

body {
	font-family: 'Baloo 2', cursive;
}



/* General Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 22px;
	scroll-behavior: smooth;
}

body {
	/*font-family: 'Short Stack', cursive;*/
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	background-color: #FCEFFE;
	color: #333;
}

header {
	text-align: center;
	padding: 1rem;
}

h1, h2 {
	color: #FF5F5D;
	margin: 1rem 0;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 1.8rem;
}

button {
	background-color: #FFCD00;
	color: #333;
	font-size: 1rem;
	border: none;
	padding: 0.8rem 1.2rem;
	border-radius: 5px;
	cursor: pointer;
	margin: 1rem 0;
	box-shadow: 4px 4px #FF5F5D;
	transition: transform 0.1s ease;
}

button:active {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px #FF5F5D;
}

section, article {
	margin-bottom: 2rem;
	background: #FFF8F0;
	border: 3px dashed #FFCD00;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 4px 4px #FF5F5D;
}

ul {
	list-style-type: none;
}

li::before {
	content: "✨";
	margin-right: 0.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #FF5F5D;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: underline;
}

footer {
	margin-top: 2rem;
	text-align: center;
	color: #666;
}

/* Memphis-inspired doodles */
body::before, body::after {
	content: "";
	position: absolute;
	top: 10%;
	left: 10%;
	width: 80px;
	height: 80px;
	background: #FFCD00;
	z-index: -1;
	border-radius: 50%;
}

body::after {
	top: 85%;
	left: 80%;
	width: 60px;
	height: 60px;
	background: #FF5F5D;
}

input[type="file"] {
	display: none;
}

