body{
	margin: 0;
	padding: 0;
}

header{
	width: 100%;
	height: 10vh;
	background-color: rgb(0, 185, 157);
	color: white;

	display: flex;
	justify-content:center;
	align-items:center;
}

.tareas{
	width: 100%;
	height: 90vh;

	display: flex;
	justify-content:center;
	align-items:center;
}
.tareas ul{
	margin: 0;
	padding: 0;
}
.tareas ul li{
	list-style: none;
	font-size: 20px;
	background-color: rgb(0, 185, 157);
	margin: 1rem 2rem;
	width: auto;
	height: 2rem;
	border-radius: 20px;

	display: flex;
	align-items:center;
	justify-content:center;
}
.tareas ul li:hover{
	cursor: pointer;
}
.tareas ul li a{
	text-align: center;
	color:white;
	width: 100%;
	text-decoration: none;
	margin: 1rem 2rem;
}