@charset "UTF-8";
/* Author: Amelia
	Date: 9 October 2023
*/

/* Element Selector */

h1 {
	color: indianred;
	font-family: "verdana"
}

h2 {
	color: indianred;
	font-weight: bold;
}

/* Class Selector */

.nav-link {
	text-decoration: none;
	color: palevioletred
}

.logo img

/* ID Selector */

#section-title {
	font-weight: bold;
	color: indianred;
}

/* Descendant Selector */

header ul li {
	display: inline;
	margin-right: 20px;
}

/* Child Selector */
ul.list > li {
	font-style: normal
}