* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 36px;
	font-family: "Montserrat", sans-serif;
	background-color: rgb(240, 228, 205);
}
header {
	background-image: linear-gradient(315deg, wheat 0%, pink 99%);
	position: fixed;
	width: 100%;
	min-width: max-content;
	height: 14vh;
	top: 0;
}
nav {
	border-top: #000 2px solid;
	border-bottom: #000 2px solid;
	min-width: max-content;
	padding-top: 2px;
	position: fixed;
	top: 14vh;
	background-image: linear-gradient(315deg, wheat 2%, pink 60%);
	background-size: 100%;
	width: 100%;
	height: 7vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
main {
	border-radius: 7px;
	padding: 20px;
	display: flex;
	justify-content: center;
	margin: auto;
	margin-top: 22vh;
	scroll-margin: 25vh;
	width: 80%;
	height: max-content;
	margin-bottom: 100px;
	background-color: white;
	box-shadow: 1px 1px 10px 10px rgb(185, 185, 185);
	justify-items: center;
	flex-direction: column;
}
.s1 {
	scroll-margin: 25vh;
	margin-bottom: 50px;
}
table,
th,
tr {
	border: 1px black solid;
	padding-left: 100px;
	padding-right: 100px;
	text-align: center;
	border-collapse: collapse;
	margin-bottom: 50px;
}
td {
	font-size: 28px;
}
.s2 {
	scroll-margin: 25vh;
	margin-top: 100px;
	margin-bottom: 20px;
}
.s3 {
	scroll-margin: 25vh;
	margin-top: 100px;
	margin-bottom: 20px;
	flex-direction: row;
}
.author {
	font-size: 20px;
	float: right;
}
a {
	font-size: 30px;
	color: black;
	text-decoration: none;
}
ul {
	list-style: none;
}
h3 {
	background-image: linear-gradient(315deg, wheat 2%, pink 60%);
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	text-decoration-line: underline;
	margin-bottom: 50px;
}
p {
	font-size: 30px;
}
div.button_content {
	visibility: hidden;
	width: max-content;
	height: max-content;
	position: absolute;
	top: 5vh;
	left: 75%;
	z-index: 1;
	border-radius: 7px;
	margin: 5px;
	padding: 5px;
	border: 1px solid black;
	background-image: linear-gradient(315deg, wheat 2%, pink 60%);
}

div.button:hover div.button_content {
	visibility: visible;
}
div.button:hover::after div.button_content {
	opacity: 0%;
}
