@charset "UTF-8";

/* Global Styles */
* {
  box-sizing: border-box;
}

article, aside, footer, header, main, nav, section {
  display: block;
}

/* Body Structure */
body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

/* Header */
header {
  background-color: black;
  color: white;
  padding: 50px;
}

/* Navigation */
.sidenav {
  width: 175px;
  position: fixed;
  z-index: 1;
  top: 200px;
  left: 10px;
  background: lightgray;
  overflow-x: hidden;
  padding: 8px 0;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #2196F3;
  display: block;
}

.sidenav a:hover {
  color: #064579;
}

/* Page Structure */
.main {
  margin-left: 140px; /* Same width as the sidebar + left position in px */
  font-size: 28px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.list {
  text-align: left;
  list-style: inside;
  margin-left: 300px;
  line-height: 2;
}

/* Footer */
footer {
  background-color: black;
  color: white;
  height: 80px;
  padding: 10px;
}