My image is not centering with the heading at the top no matter what I try. If anyone can provide me with a code correction it would be greatly appreciated. Thanks in advance.
img {
position: absolute;
top: 50%;
left: 50%;
width: 675px;
height: 418px;
margin-top: -250px;
/* Half the height */
margin-left: -250px;
/* Half the width */
}
body {
background-color: black;
}
h1 {
color: white;
text-align: center;
}
p {
color: white;
font-family: verdana;
font-size: 20px;
}
<h1>Text</h1>
<div class="img">
<img src="rsz_damon600.png">
</div>