/* CSS Document */
/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */
@import url();
@import url("https://fonts.googleapis.com/css2?family=Georama:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alice&family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merienda&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Main Formatting */
body {
	font-family: alice, georama, sans-serif;
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
	background-color: rgba(222, 184, 135, 0.329);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

details {
	margin-left: 10px;
}

.h1,
h1 {
	font-size: calc(1rem + 1.5vw);
}

.blue-border {
	border: 2px solid blue;
	width: 50%;
	margin: 0 auto;
}

.steps {
	/* CSS properties for elements with the "steps" class */
	border: 1px solid #ccc;
	padding: 15px;
	margin-bottom: 20px;
	background-color: #f9f9f9;
}

.step {
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 10px;
	background-color: #f9f9f9;
}

.wrap {
	max-width: var(--max);
	margin: 32px auto;
	padding: 24px;
}

header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.logo {
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: linear-gradient(135deg, #0058a3, #0086ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
}

h1 {
	font-size: 1.6rem;
	margin: 0;
}

.lead {
	background: var(--card);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
	margin-bottom: 18px;
}

.lead h2 {
	margin: 0 0 6px 0;
	font-size: 1.25rem;
}

.content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

article {
	background: var(--card);
	font-family: "alice", Times, serif;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

h3 {
	margin-top: 0;
}

p {
	margin: 0.6em 0;
}

ul {
	margin: 0.5em 0 1em 1.25em;
}

.cta {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 14px;
	background: var(--accent);
	color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
}

footer {
	margin-top: 18px;
	color: var(--muted);
	font-size: 0.9rem;
	text-align: center;
}

@media (min-width: 760px) {
	.content {
		grid-template-columns: 1fr 320px;
	}

	.lead h2 {
		font-size: 1.4rem;
	}
}

.aside {
	background: linear-gradient(180deg, #fbfdff, #f7fbff);
	padding: 18px;
	border-radius: 10px;
}

.muted {
	color: var(--muted);
	font-size: 0.95rem;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%
}

.section-title {
	margin-top: 40px;
	font-size: 1.8em;
	color: #34495e;
	border-bottom: 3px solid #4caf50;
	padding-bottom: 10px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th,
td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: center;
}

th {
	background-color: burlywood;
	color: white;
	font-size: 1.1em;
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}

tr:hover {
	background-color: #e8f5e9;
	transition: background-color 0.3s ease;
}

p.footer {
	text-align: center;
	color: #777;
	margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {

	table,
	th,
	td {
		font-size: 0.9em;
	}

	.section-title {
		font-size: 1.4em;
	}
}