/*
body {
  margin: 0;
  margin-top: 180px;
  padding: 0;
  top: 0;
  right: 0;
  left: 0;
  padding-bottom: 200px;
  background-color: #FCF8EC;
} */

body {
  margin: 0;
  padding: 0;
  top: 0;
  padding-bottom: 200px;
  background-color: #FCF8EC;
}

p, h1 {
  font-family: sans-serif;
  text-align: center;
}

h1 {
  font-size: 72px;
}

nav {
  width: 100%;
  top: 0;
  position: fixed;
  display: flex;
  flex-direction: row-reverse;
  background-color: #333;
  padding-right: 20px;
  z-index: 10;
}

.nav-item {
  margin: 25px;
  font-size: 30px;
}

.nav-item > a {
  text-decoration: none;
  color: white !important;
}

.nav-item > .other-link:hover {
  color: #ADD8E6 !important;
}

#current-nav-item {
  text-decoration: underline;
  font-weight: bold;
  color: white;
}

#age-table > tbody > tr > .col0 {
  padding-left: 201px;
}

#sex-table > tbody > tr > .col0 {
  padding-left: 224.5px;
}

.data {
  padding: 5px 15px;
  text-align: right;
}

.col_heading {
  font-size: 24px;
}

.row1, .row3, .row5, .row7, .row9 {
  background-color: #eee;
}

.section {
  background-color: white;
  padding: 40px;
  width: 1600px;
  margin: 120px auto;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

@media screen and (max-width: 1600px) {
  .section {
    width: 90%;
  }
  
  #graph-div {
    width: 1450px;
  }
} 

.section:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

#cases-label {
  font-size: 72px;
}

#basic-stats {
  width: 1000px;
}

#basic-stats > p {
  font-size: 40px;
}

#basic-stats > h1 {
  font-size: 72px;
  font-weight: bold;
}

#demographic {
  width: 1000px;
}

#demographic > table {
  margin: 50px auto;
}

#demo-explanation {
  display: block;
  margin: auto;
  font-size: 22px;
  width: 80%;
}

#selection-bias {
  display: block;
  margin: auto;
  text-align: center;
  background-color: #ffff80;
  padding: 20px;
  font-size: 20px;
  width: 80%
}

#vaccine > p {
  font-size: 32px;
}

#green { color: green }
#blue { color: blue }
#brown { color: #6F4E37 }

/*
Python code that generates odd row selectors:
", ".join([".row" + str(x) for x in range(9) if x%2==1])
*/
