body {
    width: 100%;
    font-family: "Cabin", serif;
}

h1, h2, h3 {
    width: 100%;
    text-align: center;
    font-family: "Cabin Sketch", sans-serif;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #271daf;
  font-family: "Cabin", sans-serif;
}

nav ul li {
  float: left;
}

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

nav ul li a:hover {
    font-weight: bold;
    background-color: #1678e0;
}


nav ul li a.highlight
{
    color: black;
    background-color:yellow;
}

header nav {
    display: flex;
} 

header nav ul {
    flex-basis: 100%
}

main {
    display: flex;
}


main section {
    flex-basis: 50%;
}

main section h3 {
    text-align: center;
    font-size: 1.5em;
}

main section ul{
    font-size: 1.2em;
}

/*Custom Radio Button https://www.w3schools.com/howto/howto_css_custom_checkbox.asp*/
.funchoice {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.funchoice input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.funchoice:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.funchoice input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.funchoice input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.funchoice .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*Word wrap (source: https://stackoverflow.com/questions/1258416/word-wrap-in-an-html-table)*/
/*The following trick works for all but td*/
* { word-wrap:break-word;}
/*The following trick works for td*/
table {
    table-layout:fixed;
    width: 100%;
}
footer {
    clear: right;
    width: 100%;
    color: #271daf;
    font-family: "Cabin", sans-serif;
    font-size: small;
}