*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
header{
	display: flex;
	flex-direction: center;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background-color: black;
	font-size: 1.5rem;
	font-family: 'Bebas Neue', sans-serif;
}
h1{
	padding: 30px;
	text-align: center;
	font-family: 'Bebas Neue', sans-serif;
}
.logo{
	max-width: 10rem;
}
.list{
	list-style: none;
	display: flex;
	gap: 2rem;
}
.list li a{
	text-decoration: none;
	color: white;
}
table a {
	text-decoration: none;
}
table{
	width: 100%;
}
td{
	padding: 25px;
}
th{
  font-size: 30px;
  background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  color: white;
  padding: 40px;
}
tr{
	text-align: center;
	font-size: 20px;
	
}
td{
	background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
}
footer{
	background-color: black;
	color: white;
	padding: 40px;
	font-family: 'Bebas Neue', sans-serif;
}

