
/* Fonts and Type */

h1, h2, h3, h4, h5, h6 {
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
}

.navItem:hover {
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  }

h1 {
  font-size: 5.61rem;
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
  }

h2{
  font-size: 4.209rem;
  line-height: 4rem;
  margin-top: 2.25rem;
  margin-bottom: 2rem;
  }
  
.firstHeader {
  margin-top: -2.75rem;
  }

h3{
  font-size: 3.157rem;
  line-height: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  }

h4{
  font-size: 2.369rem;
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  }
  
p{
  font-size: 1rem;
  line-height: 1.25rem;
  }

/* General Styling*/

body {  
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  font-style: normal;
  background-image: url('../imgs/diarrhea.jpg');
  background-size: 33rem;
  max-width: 120rem;
  margin: auto;
      
.content, footer {
  margin: 2rem 8rem;
  background-color: #FFFFF0;
  border: 3px solid #060606;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);
  border-radius: .25rem;
  color: #060606;
}


img {
  max-width: 100%;  
}

footer {
  padding: .5rem;  
}

footer nav a {
    padding-right: .5rem;
    color: #060606;
}

.content {
  padding: .5rem 1rem 2rem .5rem;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

header {
  height: 100%;
  min-width: 9rem;
  padding: .25rem;
}

.mainNav {
  display: flex;
  gap: .5rem;
  flex-direction: column;
  margin-right: 2rem;
  margin-top: -.5rem;
  top: 0;
}

.mainNav a{
  color: #060606;
  height: 1.75rem;
  }
  
.onPage{
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  }

.home {
  text-wrap: nowrap;
  position: relative;
  margin-left: -1rem;
  z-index: 999;
  text-decoration: none;
  }


/* Breakpoints */

@media only screen and (max-width: 900px) {
  
  /* Type */
  
  h1 {
  font-size: 5.61rem;
  line-height: 5rem;
  width: 100%;
  margin-bottom: 0;
  }

h2{
  font-size: 4.209rem;
  line-height: 4rem;
  margin-bottom: 1rem;
  }

h3{
  font-size: 3.157rem;
  line-height: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  }

h4{
  font-size: 2.369rem;
  line-height: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  }
  
  /* General */
  
  body {
    margin: .5rem;
    background-size: 12rem; 
  }
  
  .content, footer {
    margin: 1rem .5rem;
  }
  
  .content {
    flex-direction: column;
  }
  
  .mainNav{
    flex-wrap: wrap;
    flex-direction: row;  
    position: relative;
    margin-top: -2.15rem;
  }
  
  .navItem:hover {
    font-family: "Libre Baskerville", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  
  .home {
    width: 100%;
  }
  
  img {
  margin-top: 1rem;
  }
  
}  