I'm having trouble centering my h1 element in the header. It should be positioned in the middle of a 450px header, while keeping the nav bar at the top right. Additionally, I would like to add a logo to the top left. I've tried using align, position, and margin auto, but haven't had any luck. If someone could assist me and point out where I'm going wrong, I would greatly appreciate it. Thank you.
body {
background-color: #999;
font-family: times;
}
header {
height: 450px;
background: url(../Pictures/Flensburg.jpg) center center fixed;
background-size: cover;
}
nav {
float: right;
30px 30px 0 0;
}
ul{
display: inline;
align: right;
list-style-type: none;
padding: 10px
}
li {
display: inline-block;
padding: 10px
}
a {
background-color: #b3b3b3;
color: white;
text-transform: uppercase;
}
h1 {
font-size: 72px
width: 100%
}
<!DOCTYPE html>
<html>
<head>
<title>Keanu</title>
<link href="CSS/Main.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="Index.html">Home</a></li>
<li><a href="About Me.html">About Me</a></li>
<li><a href="Portfolio.html">Portfolio</a></li>
<li><a href="Testimonial.html">Testimonial</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</nav>
<h1>My Personal Website</h1>
</header>
<footer>
</footer>
</body>
</html>