	@import url('https://fonts.upset.dev/css2?family=Urbanist:ital,wght@0,200;0,300;0,400;0,500;0,900;1,200;1,300;1,400&display=swap');
	* {
	box-sizing: border-box;
	-webkit-font-smoothing: none;
	}
	body {
	font-family: 'Urbanist', serif;
	background-color: #F0EBD8;
	}
	header h1 {
	font-weight: 900;
	font-size: 2rem;
	text-align: center;
 	background-color: #FFF;
	color: #1D2D44;
	padding: 10px 0px 10px 0px;
	margin: 0;
	}
	/* nav bar */
	nav {
 	display: flex;
  	flex-direction: column;
  	align-items: flex-end;
 	justify-content: center;
	background-color: #FFF;
	padding-bottom: 10px;
	border-bottom: 2px #1D2D44 dashed;
	}
	nav li {
	list-style: none;
	padding: 10px;
	display: block;
	font-size: 1rem;
	}
	nav a {
  	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	padding: 5px 10px 5px 10px;
	color: #3E5C76;
	background-color: #E1E1E1;
	}
	nav a:hover {
	color: #748CAB;
	}
	@media screen and (min-width: 1020px) {
 	nav {
    	display: flex;
    	flex-direction: row;
    	align-items: center;
    	justify-content: center;
  	 }
	}

	section {
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
    	align-items: center;
    	justify-content: center;
	}
	article {
	text-align: center;
	display: block;
	margin: 30px;
	font-size: 2rem;
	background-color: #E1E1E1;
	padding: 20px;
	border-radius: 20px;
	width: 300px;
	box-shadow: 1px 1px 5px #1D2D44;
	transition: all 0.1s ease-in;
	}
	article:hover {
	box-shadow: 0px 0px #1D2D44;
	}
	article a {
	font-weight: 600;
	font-size: 1.5rem;
	text-decoration: none;
	}
	.cards {
	width: 100%;
	}
	.card {
  	position: relative;
	}
	.card a::before {
  	content: "";
  	position: absolute;
  	top: 0px;
  	right: 0px;
 	bottom: 0px;
  	left: 0px;
	}
	main {
	background-color: #FFF;
	margin: 0;
	padding: 10px;
	}
	main h2 {
	color: #1D2D44;
	font-size: 1.5rem;
	letter-spacing: 1.5px;
	font-weight: 600;
	}
	main h3 {
	color: #3E5C76;
	font-size: 1.3rem;
	letter-spacing: 1.5px;
	font-weight: 600;
	}
	main a {
	color: #748CAB;
	text-underline-offset: 3px;
	}
	footer a {
	color: #748CAB;
	text-underline-offset: 3px;
	}
	footer a:hover {
	color: #000;
	text-decoration: none;
	}
	main a:hover {
	color: #000;
	text-decoration: none;
	}
	main p, ul, li {
	font-size: 1.2rem;
	line-height: 1.8rem;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: justify;
	}
	main ul {
	list-style-type: "\203A";
	}
	main ul li {
	padding: 5px;
	}
	main p strong {
	font-weight: 600;
	}
	main p em {
	font-weight: 400;
	font-style: italic;
	}
	main textarea {
	width: 40vw;
	height: 20vh;
	background-color: #E1E1E1;
	font-family: Courier New, monospace;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 1rem;
	}
	main img {
	margin: 10px;
	}
	.container {
	position: relative;
	top: 5vh;
	width: 80vw;
	margin: 0 auto;
	border: 2px #1D2D44 solid;
	}
	.breadcrumbs {
	font-size: 1rem;
	}
	footer {
	background-color: #FFF;
	padding: 10px;
	text-align: center;
	letter-spacing: 1px;
	color: #5A5A5A;