html, body {
  height:1vh;
  width:100%;
  background-color: #FFFFFF;
}


/* Sections of Layout
-------------------------------------- */
/* Generic styles for demo purposes
-------------------------------------- */

/* Using custom fonts */ 

@font-face {
  font-family: textFont;
  src: url(/Resources/Fonts/Content.otf);
}

@font-face {
  font-family: titleFont;
  src: url(/Resources/Fonts/ContentBold.otf);
}

@font-face {
  font-family: altTextFont;
  src: url(/Resources/Fonts/Optima_Medium.ttf);
}

@font-face {
  font-family: altTextFontItalic;
  src: url(/Resources/Fonts/Optima_Italic.ttf);
}

.header {
  font-family: titleFont, Arial, sans-serif;
  text-align: center;
  vertical-align: text-top;
  background-color: #FFFFFF;
}

.subtitle {
  line-height: 1;
  max-width: 80%;
  font-size: 24px;
  text-align: center;
  margin-left: 10%;
  }

.container {
  font-family: textFont, Helvetica, Arial, sans-serif;
  height:98%;
  width:98%;
}

.container > * {
  background-color: #FFFFFF;
  padding: 1em;
}

/* Typically, you wouldn't specify a height or min-height on this, instead allowing your actual content (i.e., text, images, etc.) to dictate the height of your content area. But since this example has very minimal content, I've set a min-height to mimic a taller content area. */
.content {
  overflow-y: visible;
  text-align: center;
}

/* Layout is stacked vertically by default (for narrower viewports), so give some breathing room between the sections. */
/* Select all elements where parent is a container */
.container > * {
  margin-bottom: 5%;
}

/* Now let's apply grid for wider viewports. */
@media screen and (min-width: 40em) {
  .container > * {
    margin-bottom: 0;
  }
  /* Define the grid */
  .container {
    display: grid;
    grid-template-columns: 18% 60% 18%;
    grid-gap: 2% 2%;
    grid-template-rows: 100% 0% 0%;
  }
  /* Place items on the grid */
  .header {
    grid-column: 2;

  }
  .sidebar {
    grid-column: 1;
  }
  .content {
    grid-column: 2;
  }

}


/* styling for buttons */

.button {
  font-family: titleFont;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 4px 50px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 36px;
}

.button1 {
  background-color: black; 
  color: white; 
  font-size: 24px;
}

.button1:hover {
  background-color: white;
  color: black;
}

.button2 {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.button2:hover {
  background-color: #008CBA;
  color: white;
}

.button3 {
  background-color: white; 
  color: black; 
  border: 2px solid #D45309;
}

.button3:hover {
  background-color: #D45309;
  color: white;
}

.navButton {
  font-size:16px;
  }

#buttonDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 50px;
}

#navBar {
  font-size: 16px;
}

#imgDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
}

#heroImg {
  max-width: 400px;
}

img {
  max-width: 60%;
  height: auto;
}

@media screen and (max-width: 480px) {
  .button {
      font-size: 18px;
    }
  #heroImg {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
