
/* Typography */

p, blockquote {
  font-size: 16px;
  font-family: AriaL, sans-serif;
  margin-bottom: 7px;
  line-height: 25px;
}

h1 {
  font-size: 34px;
  font-family: Garamond;
  font-weight: normal;
  margin-bottom: 0px;
}

h2 {
  font-size: 29px;
  font-family: Garamond;
  font-weight: normal;
  margin-bottom: 0px;
}

h3 {
  font-size: 19px;
  font-family: Arial, sans-serif;
  font-weight: Bold;
  margin-bottom: 0px;
}

h6 {
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 14px;
}

table {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

tr, td {
  padding: 3px;
}

ul, li, dl, dt, dd{
  font-size: 16px;
  font-family: AriaL, sans-serif;
  line-height: 25px;
  padding-left: 20px;
}

/* Visual set up */

body {
  margin: 2px 25px;
}


/* Responsive Sidebar */
.container {
    display: flex;
}

.sidebar {
    width: 180px;
    padding: 20px;
}

.content {
    width: 620px;
    flex-grow: 1;
    padding: 20px;
}

@media (max-width: 800px) {
    .sidebar {
        display: none;
    }

    .content {
        width: 100%; 
    }
}




    