/******************************************************************************
***   Header
******************************************************************************/

.logo {
  float: left;
  padding: 10px 0;
  margin-left: 20px;
}

header ul {
  list-style-type: none;
  float: right;
  margin-right: 20px;
  
  overflow: hidden;
  background-color: rgb(255, 255, 255);
}

header li {
  float: left;
}

header li a {
  display: block;
  color: rgb(62, 62, 62);
  text-align: center;
  padding: 30px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
header li a:hover {
  background-color: rgb(239, 251, 252);
}


header {
  font-family: nunito;
}

h1 {
  font-family: nunito;
}

h2 {
  font-family: nunito;
}


/******************************************************************************
***  Navigation  
******************************************************************************/
nav ul {
  list-style-type: none;
  margin: 0;
  margin-right: 20px;
  margin-left: 20px;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  clear: both;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
nav li a:hover {
  background-color: #111;
}

nav {
  font-family: nunito;
  font-weight: bold;
}

/******************************************************************************
*** link colours 
******************************************************************************/

/* unvisited link */
a:link {
  color: rgb(69, 159, 222);
}

/* visited link */
a:visited {
  color: rgb(69, 159, 222);
}

/* mouse over link */
a:hover {
  color: rgb(218, 49, 32);
}

/* selected link */
a:active {
  color: rgb(218, 49, 32);
}

.active {
  /*color: rgb(218, 49, 32);*/
  color: white;
  display: block;
  text-align: center;
  padding: 14px 16px;
}



/******************************************************************************
*** classes etc.
******************************************************************************/

.about {
    font-family: nunito;
    font-weight: bold;
    padding: 20px;
    margin: 10px;
}

.book {
    padding: 20px;
    margin: 10px;
    background-color: #f7f4f4;
}

.moreinfo {
    padding: 20px;
    margin: 10px;
    background-color: rgb(247, 204, 94);
}

/* highlight marked items, e.g. in a table */
mark {
    background-color: rgb(247, 204, 94);
}

tr.markedrow td {
    background-color: rgb(247, 204, 94);
}

.nowrap {
    white-space: nowrap;
}


* {
    box-sizing: border-box;
}

/*
* {
  font-size: 100%;
  font-family: Roboto;
}
*/



/******************************************************************************
***   Tables -- two-column layout
******************************************************************************/

/* Create a two-column layout */
.row {
  float: left;
  width: 50%;
  padding: 15px;
  padding-left: 25px;
  font-family: Roboto;
}

.column {
  font-family: Roboto;
  padding-top: 0px;
  margin-right: 20px;
  /*font-family: Georgia;*/
}

/* Clearfix (clear floats) */
.column::after {
  content: "";
  clear: both;
  display: table;
}

table {
  border-collapse: separate;
  border-spacing: 10px 0;
}

tr {
  text-align: left;
}

tr:hover {
  background-color: rgb(239, 251, 252);
}

td {
  padding: 5px 0;
}

th{
  font-family: roboto;
}



/******************************************************************************
***   Notes
******************************************************************************/

/* fonts */

  /* there's a list of google fonts here: 
     https://www.w3schools.com/howto/howto_google_fonts.asp 
  */