I am having a hard time with CSS selector rules I have already checked here for specificty rules. I have tried using firebug and inspecting the element with google chrome and copying the CSS path. But I cannot get the CSS to work. I am using bootstrap. Also this is my first time making a website so any criticism is great (unless it is negative). Here is my code for the page I am trying to change.
#page-content-wrapper > div > div > center > h1 > font {
color: red;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Pediaclinic</title>
<!-- Bootstrap Core CSS -->
<link id="myCSS1" href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link id="myCSS2" href="css/simple-sidebar.css" rel="stylesheet">
</head>
<!-- webpage begins -->
<body background="background2.jpg">
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li>
<a href="C:\Users\G\Desktop\website.files\Home.html">Home</a>
</li>
<li>
<li>
<a href="javascript:; " data-toggle="collapse" data-target="#demo"><i class="fa fa-fw fa-arrows-v"></i> More Info <i class="fa fa-fw fa-caret-down"></i></a>
<ul id="demo" class="collapse">
<li>
<a href="C:\Users\G\Desktop\website.files\About Us.html">About Us</a>
</li>
<li>
<a href="C:\Users\G\Desktop\website.files\Staff.html">Staff</a>
</li>
<li>
<a href="C:\Users\G\Desktop\website.files\PDFs.html">PDFs</a>
</li>
</ul>
</li>
<li>
<a href="C:\Users\G\Desktop\website.files\New Patients.html">New Patients</a>
</li>
<li>
<a href="C:\Users\G\Desktop\website.files\Contact Us.html">Contact Us</a>
</li>
<li>
<a href="C:\Users\G\Desktop\website.files\Location.html">Location</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content ===========================================================================================================-->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<a href="#menu-toggle" class="btn btn-default" id="menu-toggle">Show Menu</a>
<P> </P>
<P> </P>
<P> </P>
<P> </P>
<P> </P>
<center class="heading"><h1><font>***Home***</font></h1></center>
<P> </P>
<P> </P>
<P> </P>
<P> </P>
<P> </P>
<p> </p>
<div class="container">
<div class="jumbotron">
<h2>Basic Info</h2>
<ul><p class="section-paragraph"> The purpose of the website is to give you general knowlege
</p></ul>
</div>
<footer>
<div class="container" >
<div class="row">
<div class="col-lg-12">
<p>Copyright 2015© This website was made by G</p>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</footer>
</div>
</div>
</div>
</div>
In the main code you should see Home bolded and in italic (it is under webpage begins). That is what I am trying to change with CSS.