@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

body {
	padding: 0px;
	margin: 0px;
}

#header {
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: sticky;
	background: linear-gradient(30deg, grey 60%, darkgrey 60%);
	padding: 15px;
	width: 100%;
	transition: 1s ease;
	z-index: 1;
}
#images {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
#header::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, red 50%, blue 50%);	
	z-index: -1;
	transition: opacity 0.5s linear;
	opacity: 0;
}

#header:hover::before {
	opacity: 1;
}

h1 {
	font-family: "Libre Baskerville", serif;
	font-size: 28pt;
}
p {
	font-size: 16pt;
}

a, figcaption, p {
	font-family: "Libre Franklin", sans-serif;
}

a {
	text-decoration: underline;
	font-size: 14pt;
}


#header > * {
	color: white;
}

#header > a {
	padding: 30px;
}

#title {
	text-align: center;
}

.textimg img {
	max-width: 450px;
}

#footer {
	background-color: grey;
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 0px;
}
#footer > * {
	color: white;
	font-family: "Libre Baskerville", serif;
}
#footer > p {
	text-align: center;
	font-size: 14pt;
}

#content {
	display: flex;
	margin-bottom: 50px;
}

#content > .col {
	flex: 50%;
}

#textcontent {
	overflow: clip;
}
#textcontent p {
	margin-left: 3rem;
	margin-right: 3rem;
	text-align: justify;
}

.small {
	font-size: 12pt;
}

#logo {
	max-width: 100px;
	max-height: 100px;
	padding-right: 2em;
}
