/* TYPE SELECTORS */
h1 {
    font-size: 2.50em; /* 'em' is a scalable unit used in webdev 1.5x current */
    margin-bottom: 1.25em; /* reduces space between the header and body text.*/
}

h2 {
    font-size: 1.75em; 
    margin-bottom: 0.25em; /* reduces space between the header and body text.*/
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.25em;
}

p {
    margin: 0em;  /* Reducing gap between header and body text. */
}


/* CSS STYLING RULES FOR CLASS AND ID SELEECTORS */
/* CLASS SELECTORS */
.website-header, 
.article-privacy-header{
    color: #375C64;
    margin-left: 60px;
}
  
.article-privacy-body {
    font-weight: 1000px;
    font-size: 1.2em;
    margin-left: 65px;
    margin-right: 330px;
}

/* Style the footer */
footer {
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
  }

/* Style the Privacy Policy link that is located within the footer section. */
footer {
    color: black;        /* Change the link color to black */
    text-decoration: none; /* Remove the underline */
}
  
footer:hover {
    color: gray;  /* Change the link color to gray when the mouse is over it */
}
  
/* Style the privacy link */
#privacy {
    font-size: 18px;
    text-align: center;
}