body
{
  color: white;
  background-color: gray;
  font-family: "Arial";
  background-image:
  linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)
  ),
  url("bg.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
  display: inline;
}

.article-content
{
  font-size: 1rem;
  line-height: 1.6;
}
            
header
{
  
  color: white;
  padding: 1px;
}

.centerText
{
  text-align: center;
}

body a
{
  color: cyan;
}

body a:hover
{
  text-decoration: none;
  color: red;
}

.centerImage
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
            
nav
{
  margin-top: 15px;
}
            
nav a
{
  color: cyan;
}
            
nav a:hover
{
  color: red;
  text-decoration: underline;
}

footer
{
    background: maroon;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-top: 5px solid #fcba03;
    bottom: 0;
    width: 100%;
}
            
footer a
{
  text-decoration: none;
  color: white;
}
            
footer a:hover
{
  color: cyan;
}