:root {
	--base: #023746;
	--base-light: #0237461a;
	--primary: #007bff;
	--secondary: #e58a1e;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #103035;
}

body {
	background-color: var(--base-light);
	padding: 30px;
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	min-height: 100vh;
	font-family: "Poppins", serif;
	font-size: 20px;
	color: var(--dark);
}

.bg {
	border-radius: 20px;
	background-color: #f8f9fa;
	flex: 1 0 auto;
	padding: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	text-align: center;
}

img {
	max-width: 600px;
	width: 100%;
	height: auto;
	margin: 0 0 1rem;
}

p {
	margin: 0 0 1rem;
    max-width: 800px;
    text-wrap-style: pretty;
}

.lead {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--secondary);

    span {
        background-color: var(--dark);
        color: var(--light);
        display: inline-block;
        border-radius: 100px;
        padding: 0px 10px;
        font-size: 1rem;
        margin: 0 2px;
    }
}

a {
	color: var(--secondary);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}
