::selection{
	background: #c9c9ef;
}
body{
	margin: 0 1rem;
	font-family: 'Poiret One', sans-serif;
	font-weight: bold;
	font-size: 2rem;
	background: lavender;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-transform: lowercase;	
}
h1{
	font-size: 4.5rem;
	margin-bottom: 0;
}
table{
	min-width: 50%;
	border-spacing: 0;
}
tr{
	border-bottom: 2px solid;
	margin-bottom: 0;
	padding: 0.5rem 0.2rem;
	display: flex;
    justify-content: space-between;
}
tbody tr{
	border-color: rgba(0,0,0,0.3);
	transition: all 0.3s ease;
}
tbody tr[data-href]:hover{
	background: #c9c9ef;
	background: linear-gradient(90deg, lavender 0%, #c9c9ef 50%, lavender 100%);
	cursor: pointer;
}
.date{
	text-align: right;
}
a{
	margin-top: 1.5rem;
	color: initial;
	transition: all 0.3s ease;
}
a:hover{
	color: #c9c9ef;
}
footer{
	position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem;
    background: lavender;
}