/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Settings for main "body"-container of all pages */
body {
  background-color: WhiteSmoke;
  color: black;
  font-family: serif;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.column {
  background-color: White;
  box-shadow: 5px 5px;
  }

/* Settings for the colors of links */

a:link{
  /* color: rgb(204,0,0) */
  color: rgb(255,0,0)
  }

a:hover{
  color: rgb(255,0,0)
  }
  
a:visited{
  color: rgb(204,0,0)
  }
  
/* Classes */

.redhr {
  border: 1px solid rgb(255,0,0)
  }
  
.justify{
  text-align: justify;
  text-justify: inter-word;
  }
  
  /* Experimental settings for a horizontal navigation menu */

  .navbar ul{
    list-style-type: none;
    background-color: red;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    max-width: 800px;
    }
    
  .navbar a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    }
    
  .navbar a:hover{
    color: white;
    background-color: rgb(204,0,0);
    }
      
  .navbar a:visited{
    color: white;
    }
    
  .navbar li{
    float: left; 
    font-weight: bold;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
  
  
  
  