.noto-serif-regular {
	font-family: "Noto Serif", serif;
	font-weight: 400;
	font-style: normal;
}

.dm-serif-text-regular {
	font-family: "DM Serif Text", serif;
	font-weight: 400;
	font-style: normal;
}

.dm-serif-text-regular-italic {
	font-family: "DM Serif Text", serif;
	font-weight: 400;
	font-style: italic;
}

body {
	background-color: #0b281e;
	background-image: url(https://millicent.neocities.org/background.png);
	background-size: 50px;
	color: #011910;
} 

#main {
	margin: 25px 15%;
} 

header {
	width: 90%;
	margin-inline: 5%;
}

header img {
	width: 100%;
	border-radius: 7px;
}

nav a {
	display: block;
	text-decoration: none;
	width: 100%;
	font-size: 1.2em;
	color: #000;
}

nav ul {
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
	background: #fdccf0;
	border-radius: 7px;
}

nav li {
	float: left;
	position: relative;
	/* position: relative; was in the previous neocities css */
	list-style: none;
	width: calc(25% - 40px);
	padding: 10px 20px;
}

nav ul ul {
	display: block;
	position: absolute;
	top: 42px;
	left: 5px;
	background-color: #cf79d0;
	visibility: hidden;
}

nav ul ul li {
	width: 100%;
	padding: 5px 15px;
}

nav li:hover > ul {
	visibility: visible;
}

section {
	padding: 30px;
	margin: auto;
	background: #faedfb;
	border: 7px solid #fdccf0;
	border-radius: 30px;
}

h1 {
	font-family: "DM Serif Text";
	font-size: 1.8em;
	color: #74334f;
}

p {
	font-family: "Noto Serif";
	font-size: 1.2em;
}