header {
	background-color: rgb(68, 206, 121);
	color: #fff;
	height: 35px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

	header h1 {
		color: rgb(3, 3, 179);
		margin: 0;
		font-size: 24px;
	}

	header .user {
		color: rgb(3, 3, 179);
		display: flex;
		align-items: center;
	}

	header .user span {
		color: rgb(3, 3, 179);
		margin-right: 10px;
	}

		header .user img {
		height: 20px;
		margin-left: 5px;
	}

body {
	font-family: Arial, sans-serif;
}

footer {
	background-color: rgb(68, 206, 121);
	color: #fff;
	height: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

	footer p {
		color: rgb(3, 3, 179);
		margin: 0;
		font-size: 12px;
	}