@font-face {
	font-family: 'Libre Baskerville';
	src: url('/fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf');
}

@font-face {
	font-family: 'Gentium Plus';
	src: url('/fonts/GentiumPlus-6.200/web/GentiumPlus-Regular.woff');
}

@font-face {
	font-family: 'Tangerine';
	src: url('/fonts/Tangerine/Tangerine-Regular.ttf');
}

body {
	background-image: url('/img/final_background.webp');
	background-size: cover;
	background-attachment: fixed;
	color: white;
	margin: 0;
	width: 100%;
	min-height: 100vh;
	font-family: 'Gentium Plus';
	font-size: 1.2rem;
}

p {
	text-align: justify;
}

a {
	color: #f580ff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1 {
	font-family: 'Tangerine';
	font-size: 4rem;
}

div#page {
	background-color: black;
	width: 800px;
	min-height: 100vh;
	margin: auto;
}

header, main, footer {
	margin-left: 50px;
	margin-right: 50px;
}

header {
	padding-top: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

footer {
	padding-bottom: 50px;
}

div#profile {
	display: grid;
	gap: 20px;
}

div#profile>img#profile-picture {
	width: 250px;
	height: 250px;
	margin-top: auto;
	margin-bottom: auto;
	clip-path: circle();
	mask-image: radial-gradient(circle at center,
								rgba(0, 0, 0, 1) 40%,
								rgba(0, 0, 0, 0),
								rgba(0, 0, 0, 0) 100%);
	grid-row: 1;
	grid-column: 2;
}

div#profile>span#mahou-shoujo {
	font-size: 4.5rem;
	writing-mode: vertical-rl;
	grid-row: 1;
	grid-column: 1;
	font-family: serif;
}

div#profile>span#description {
	grid-row: 2;
	grid-column: 1 / span 2;
	text-align: center;
}

#zeta-plot {
	position: relative;
}

#main-menu {
	grid-column-start: 1;
	grid-column-end: 3;
	margin: auto;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.6rem;
}


#main-menu ul {
	text-align: center;
	list-style-type: none;
}

#main-menu li {
	display: inline-block;
	padding: 15px;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

footer {
	text-align: center;
}

pre {
	overflow: scroll;
}

code {
	font-family: 'Iosevka Web';
}

.katex-display {
	overflow: scroll hidden;
}

.katex, .katex-display {
	font-size: 1.1rem;
}