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

	/* CSS Reset */

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
	box-sizing: border-box;
}
/*
	2. Remove default margin
*/
* {
	margin: 0;
}
/*
	Typographic tweaks!
	3. Add accessible line-height
	4. Improve text rendering
*/
body {
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
/*
	5. Improve media defaults
*/
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	font-style: italic;
}
/*
	6. Remove built-in form typography styles
*/
input, button, textarea, select {
	font: inherit;
}
/*
	7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
/*
	8. Screen reader
*/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border-width: 0;
}

:root{
	--primary-bg-clr: rgb(106, 124, 141);
	--secondary-bg-clr: #f1f1f1;
  --primary-color: #1f252e;
	--accent-clr: #03463b;
}


body {
    font-family: 'Muli', sans-serif;
    margin: 0;
		/* overflow: hidden; */
		background-color: var(--primary-bg-clr);
		min-height: 100vh;
}

.header {
		padding: 1rem;
		text-align: center;
}

h1 {  
	color: black;
}

.container {
	display: flex;
	justify-content: center;
	/* align-items: center; */
	padding: 1rem;
}

.content {
	background-color: var(--secondary-bg-clr);
	color: black;
	font-size: 1.5rem;
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.25);
	max-height: 25rem;
	overflow: auto;
	margin-top: 2.5rem;
}

.list a {
	text-decoration: none;
	color: var(--accent-clr);
}

.list a:hover {
	text-decoration: underline;
}

footer {
	display: flex;
	flex-direction: column;
	margin: 1rem;
	gap: 1rem;
	text-align: center;
	font-size: 1.2rem;
}

footer a{
	text-decoration: none;
	color: var(--secondary-bg-clr);
	font-weight: bold;
}

footer a:hover {
	text-decoration: underline;
}









