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

*{
    margin: 0;
    padding: 0;
}

body{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

nav {
	height: 50px;
	font-size: 14pt;
	background-color: #B99470;
}

nav ul {
	list-style-type: none;
	float: right;

}

nav li {
	display: inline;
	margin: 0 15 15 0;
}

nav li a {
	float: left;
	color: #FEFAE0;
	text-decoration: none;
	padding: 10px 15px;
	transition: background-color 1s;
}

nav li a:hover {
	background-color: #C8B6A6;
	color: #FEFAE0;
}

nav li a:active {
	background-color: #C8B6A6;
	color: #FEFAE0;
}

h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
	margin-top: 30px;
}

figure{
	display: block;
	width: 100vh;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 90px;
}

img{
	width: 50vw;
}

figcaption{
	font-size: 18pt;

}

p{
	font-size: 18pt;
	text-align: center;
	margin-bottom: 20vh;
}
