/* Style the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }

.header {
  padding-left: 60px;
  padding-bottom: 20px;
  text-align: left;
  background: #E50814;
  color: white;
  font-size: 30px;
}

.sitetitle {
    padding-left: 35px;
    padding-bottom: 0px;
    text-align: left;
    color: white;
    font-size: 30px; 
}


.navbar {
    overflow: hidden;
    background-color: #333;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
  }
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
  }
  /* Active/current link */
.navbar a.active {
    background-color: #666;
    color: white;
  }
  /* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
  }


/* Column container */
.row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
  }

/* Main column */
.main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
    
  }

a:link {
  color: red;
}
a:visited {
    color: red;
  }


.codeblock {
    font-family: Monaco, monospace;
    font-size: $base-font-size;
    line-height: 100%;
    background-color: #313131;
    color: white;    
    padding: 0.2em;
    letter-spacing: -0.05em;
    word-break: normal;
    /border-radius: 5px;/
  }  