Can someone help me figure out why the background color isn't changing in my simple code? I've double-checked that the external CSS is properly linked because the text color of h1 is changing.
<!DOCTYPE html>
<html>
<head>
<title>random</title>
<link rel="stylesheet" href="randomnezs style.css">
<style>
body {
background-color: black !important;
}
h1 {
color: red;
}
<style>
</head>
</html>