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

body {
	background-color: #573209; /* logo brown */
	font-family: "Corben", monospace;
	color: #f7c426; /* light lello */
	font-size: 1.2em;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: #ed9702; /* orangey */
}

a:hover {
	text-decoration: underline;
}

.b {
	font-weight: bold;
}

.c {
	text-align: center;
}

.i {
	font-style: italic;
}

p {
	margin: 10px;
}

.center {
	display: block;
	margin: 0 auto;
}

.logo {
	padding: 9px;
	width: 30%;
}

.menu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-weight: bold;
	font-size: 1.3em;
}

.column {
	flex: 1;
	padding: 9px;
}

.left {
	display: flex;
	justify-content: right;
	align-self: center;
	max-width: 38%;
}

.right {
	display: flex;
	justify-content: left;
	align-items: center;
	max-width: 62%;
}

.leftfoot {
	display: flex;
	justify-content: right;
	align-self: center;
	font-size: 0.9em;
	padding-right: 30px;
}

.rightfoot {
	display: flex;
	justify-content: left;
	align-items: center;
	font-size: 0.9em;
	padding-left: 30px;
}

.footmenu {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
}

.footmenu a {
	font-size: 0.7em;
	font-weight: bold;
	text-decoration: underline;
}

.main {
	max-width: 768px;
}

.smlogos {
	display: flex;
	justify-content: center;
}

.smlogos img {
	padding: 0 15px;
}

.small {
	font-size: 0.7em;
}

@media (max-width: 768px) {
	.logo {
		padding: 9px;
		width: 50%;
	}
	.left {
		display: flex;
		justify-content: right;
		align-self: center;
		max-width: 10%;
	}

	.right {
		display: flex;
		justify-content: left;
		align-items: center;
		max-width: 90%;
	}
	.boxcontainer {
		flex-direction: column;
		align-items: center;
	}
}

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

.boxcontainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 20px;
}

.box {
	background-color: #f7c426; /* yellow */
	border: 10px solid #ed9702; /* orange inner border */
	box-shadow: 0 0 0 10px #d63607; /* reddish outer border */
	width: 330px;
	min-height: 170px;
	padding: 20px;
	color: #573209;
	border-radius: 5px;
	align-content: center;
}

.box p {
	margin-top: -10px;
	line-height: 1.5;
}

.box a {
	color: #d63607;
}

.buttonbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 10px;
}

.button {
	border-radius: 5px;
	background-color: #ed9702;
	border: 5px solid #d63607;
	width: 220px;
	min-height: 80px;
	padding: 20px;
	color: #573209;
	align-content: center;
	text-align: center;
}


