header {
	position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
	width: 100%;
}

header h1 {
	position: absolute;
	color: white;
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
}

nav {
	padding: 10px;
    width: 100%;
    text-align: right;
    background-color: white;
    display: inline;
}

nav ul {
	list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 992px;
}

nav ul li {
	display: inline;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

nav a {
	text-decoration: none;
	color: black;
}

nav a:hover {
    text-decoration: none;
    color: rgb(132, 132, 132);
}