body {
	font-family: Arial, sans-serif;
	font-size: 18px;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	color: #333;
	}
header {
	position: sticky;
	background: rgba(245, 190, 30, 1);
	color: white;
	padding: 10px 20px;
	text-align: center;
	z-index: 2;
	}
section {
	padding: 20px;
	margin: 0 15%;
	border-radius: 5px;
	background: #fcfcfc;
	}
footer {
	text-align: center;
	padding: 0;
	font-weight: bold;
	background: rgba(245, 190, 30, 1);
	color: white;
	position: fixed;
	bottom: 0;
	width: 100%;
	}
footer p {
	font-size: 14px;
	line-height: 15px;
	margin: 5px 0;
	}
h1 {
	font-family: 'Cabin Sketch', cursive;
	font-size: 80px;
	font-weight: bold;
	margin-top: 0;
	line-height: 1;
	}
h2 {
	font-family: 'Cabin Sketch', cursive;
	font-size: 40px;
	font-weight: 500;
	color: #000;
	margin-left:20px;
	}
p {
	line-height: 28px;
	padding: 0 20px;
	}
ul {
	line-height: 28px;
	}
a {
	text-decoration: none;
	color: rgba(235, 180, 25, 1);
	font-weight: 600;
	}
a:hover {
	color: #000;
	text-decoration: underline;
	}
.cursiva {
	font-family: "Lavishly Yours", cursive;
	font-size: 38px;
	}
img.logo {
	max-width: 80%;
	height: auto;
	z-index: 2000;
	}
table {
	border-collapse: collapse;
	width: 65%;
	margin: 28px auto;
	}
th, td {
	border: 1px solid black;
	padding: 8px 4px;
	text-align: center;
	font-size: 15px;
	}
th {
	background-color: rgba(245, 190, 30, 1);
	color: white;
	}
.nota {
	font-size: 16px;
	text-align: left;
	margin: 15px 1% 7px 5%;
	text-indent: -20px;
	line-height: 18px;
	}
#top {
	position: fixed;
	bottom: 50px;
	right: 50%;
	transform: translateX(50%);
	padding: 0 5px;
	background-color: rgba(245, 190, 30, 0.9);
	color: white;
	font-weight: bold;
	font-size: 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: none;
	}

@media (max-width: 768px) {
	img.logo {max-width: 100%;}
	section {margin: 0;}
	table {width: 92%;}
	#top {bottom: 42px; right: 18px; transform: translateX(0);}
	footer p {font-size: 12px;}
	}