/* || General setup */

html,
body {
	margin: 0;
	padding: 0;
}

html {
	font-size: 12px;
	/* background-color: #a9a9a9; */
}

body {
	width: 100%;
	margin: 0 auto;
}

/* || typography */

h1,
h2,
h3,
li {
	font-family: 'Sonsie One', cursive;
	color: hsl(20, 7%, 25%);
	font-size: large;
	margin-left: 50px;
}

p,
input,
label {
	font-family: 'Courier New', Courier, monospace;
	color: #030008;
	font-size: medium;
}

h1 {
	font-size: 4rem;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 10px black;
}

h2 {
	font-size: 3rem;
	text-align: center;
}

h3 {
	font-size: 2.2rem;
}

p,
li {
	font-size: 14px;
	line-height: 1;
}

/* || header layout */

nav,
article,
aside,
footer {
	background-color: rgba(2, 23, 1, 0.095);
	padding: 1%;
}

nav {
	height: 30px;
	background-color: #331eba;
	display: flex;
	margin-bottom: 5%;
}

nav ul {
	padding: 20;
	list-style-type: lower-roman;
	flex: 2;
	display: flex;
}

nav li {
	display: inline;
	text-align: center;
	font-size: large;
	flex: 1;
}

nav a {
	display: inline-block;
	font-size: 2rem;
	text-transform: uppercase;
	text-decoration: none;
	color: black;
}

nav form {
	flex: 1;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 2em;
	font-size: larger;
	font-family: 'Courier New', Courier, monospace;
}

input {
	font-size: 1.6rem;
	height: 20px;
}

input[type='search'] {
	flex: 3;
}

input[type='submit'] {
	flex: 1;
	margin-left: 1rem;
	background: #14100700;
	border: 10;
	color: rgb(100, 131, 22);
}

/* || main layout */

main {
	display: flex;
}

article {
	flex: 4;
}

aside {
	flex: 1;
	margin-left: 10px;
	background-color: #ff80ff;
}

aside li {
	padding-bottom: 10px;
}

footer {
	margin-top: 10px;
}

/* menu,
ul {
	display: flex;
	/* list-style: none; 
	padding: 0;
} */
