/* Download buttons side by side */
/* Download buttons side by side */
.download-buttons {
	display: flex;
	gap: 1.2em;
	justify-content: center;
	margin-top: 0.5em;
	margin-bottom: 2em;
}

/* Icon explanations section */
.icon-explanations {
	margin-top: 80px;
	margin-bottom: 2em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.icon-row {
	display: flex;
	align-items: center;
	gap: 24px;
}
.advisory-icon {
	width: 64px;
	height: auto;
	flex-shrink: 0;
}
.icon-row span {
	font-size: 1.08em;
	color: #222;
	line-height: 1.3;
	max-width: 340px;
}
.download-buttons button {
	margin: 12px 0 0;
	min-width: 160px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

.intro {
	max-width: 480px;
	margin: 0.3em auto 2.2em auto;
	line-height: 1.5;
	font-size: 1.2em;
	text-align: center;
	display: block;
	box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body {
	font-family: sans-serif;
	background: #ffee00;
	padding: 2em;
	min-height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	font-family: 'Simplistic Sans', 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-size: 2.6em;
	margin-bottom: 0.7em;
}
#main-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
#warning-form {
	margin-bottom: 2.5em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5em;
}
#preview-container {
	margin: 2em 0;
	display: flex;
	justify-content: center;
	width: 100%;
}
#sticker-preview { border: 1px solid #ccc; background: #fff; }
form label {
	margin-right: 1.5em;
	font-size: 1.1em;
	cursor: pointer;
}
	button {
	  background: #222;
	  color: #fff;
	  border: none;
	  border-radius: 0;
	  padding: 0.7em 2em;
	  font-size: 1.1em;
	  font-weight: bold;
	  letter-spacing: 0.04em;
	  margin: 2em auto 0 auto;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	  cursor: pointer;
	  display: block;
	}
	button:hover, button:focus {
	  background: #fff;
	  color: #222;
	  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
	  outline: none;
	}
}
button:hover, button:focus {
	background: #fff;
	color: #222;
	box-shadow: 0 4px 16px rgba(0,0,0,0.13);
	outline: none;
}
