/*style.css*/
body {
	display: grid;
    place-items: center;
	font-family: sans-serif;
	line-height: 1.5;
	min-height: 100vh;
	background: #f3f3f3;
}

p {
	margin: 0;
    padding: 10px 5px 10px 5px;
}

header {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	height: 70px;
	width: 100%;
	background-color: #4CAF50;
}

a {
	text-decoration:none;
}

h1 {
	color: #4CAF50;
}

nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}


input {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 5px;
}

button {
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
	margin-bottom: 15px;
	border: none;
	color: white;
	cursor: pointer;
	background-color: #4CAF50;
	width: 100%;
	font-size: 16px;
}

thead {
	background-color: beige;
}

tbody {
	background-color: aliceblue;
}