@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@500&display=swap');


* {
	margin: 0px;
	border: 0px;
	padding: 0px;

	font-family: "Sansita Swashed";
	
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	-ms-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
}


body {
	background-color: var(--light-color);
	margin-top: -8px;
}

header, main {
	--padding: 30px;
	outline: 1px solid black;
	width: calc(100% - 120px - var(--padding)*2);
	margin-left: 60px;
	padding: var(--padding);
}

h2 {
	text-align: center;
	margin-bottom: 40px;
}

p {
	margin-bottom: 20px;
	text-align: center;
}

header {
	background-color: var(--ascent-color);
	margin-bottom: 50px;
	border-radius: 0px 0px 75px 75px;
}

main {
	outline: none;
	height: wrap-content;
	border-radius: 30px;
}

main > div {
	width: 100%;
}

h1 {
	text-align: center;
}


/* style for tables */
main table {
	text-align: center;
	margin: auto;
}

main table td, main table th {
	outline: 1px solid black;
	padding: 6px;
	padding-left: 20px;
	padding-right: 20px;
}

/* round the corners of tables */
.rounded-table { --border-radius: 10px; }
.rounded-table th:first-of-type { border-top-left-radius: var(--border-radius); }
.rounded-table th:last-of-type { border-top-right-radius: var(--border-radius); }
.rounded-table tr:last-of-type td:first-of-type { border-bottom-left-radius: var(--border-radius); }
.rounded-table tr:last-of-type td:last-of-type { border-bottom-right-radius: var(--border-radius); }

/* default outline style */
.std-outline {
	outline: 1px solid black;
}