/* 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");

* {
	box-sizing: border-box;
}

/* Main Formating */
body {
	margin: 0;
	font-family: alice, georanma, 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: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

.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);
	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;
}