/* CSS Document */

body {box-sizing: border-box; padding:0; margin:0; color:#333;}
a {text-decoration:none; color:#555;}

#container {
	position:relative;
}

#menu {
	
	height:40px;
	background-color:#333;
	color:white;
	display:flex;
	align-items: center;
	
}

#menu a {
	color:white;
}

#menu ul {display:flex; gap:1em;}
#menu ul li {padding:0; list-style:none; margin:0;}

.title {
	display:flex;
	align-items: center;
	justify-content: center;
}

.title h1 {
	font-size:2em;
}

.list {
	display:flex;
	padding:20px;
}

.list > div {max-with:200px; padding:20px; border-radius:10px; background-color:rgba(0,0,0,0.2);}