html, body {
  height:100%;
  width:100%;
  background-color: #FFFFFF;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 24px;
  }
/* 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;
}


.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;
  display:block;
  margin: auto;
}

/* 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: 20% 70% 10%;
    grid-gap: 2% 0%;
    grid-template-rows: 30% auto 0%; 
  }
  /* Place items on the grid */
  .header {
    grid-column: 1 / span 3;

  }
  .sidebar {
    grid-column: 1;
  }
  .content {
    grid-column: 2 / span 2;
  }

}



/* styling for buttons */

.button {
  font-family: titleFont;
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 10px 10px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 36px;
  min-width: 100%;
}

.button1 {
  background-color: black; 
  color: white; 
}

.button1:hover {
  background-color: white;
  color: black;
}

.button2 {
  color: black; 
}

.button2:hover {
  color: #660afc;
  background-color: white;
}

.button3 {
  background-color: white; 
  color: black; 
  border: 2px solid #D45309;
}

.button3:hover {
  background-color: #D45309;
  color: white;
}

/* Nav bar styling and select menu for mobile */

#navHeader {
  font-family: titleFont, Arial, sans-serif;
  vertical-align: text-top;
}

#navDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  
}

#navBar {
  float: left;
  display: block;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 50px;
  list-style-type: none;
  margin: 10px;
  padding: 30px;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 30px;
}

.navButton {
  color: black;
  text-decoration: none;
  font-size: 20px;
}

.navButton:hover {
  color: #fcb30a;
  text-decoration: none;
}




  /* Style the navigation menu */

/* Dropdown Button */
#dropButton {
  background-color: #FFFFFF;
  color: black;
  font-size: 36px;
  border: none;
  cursor: pointer; 
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  list-style-type: none;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Button styling */

#buttonDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

#imgDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
}

#worksDiv {
  display:block;
  text-align: center;
  margin: auto;
}

#heroImg {
  max-width: 10px;
  }

.headerImg {
  max-width: 30vw;
}

.artImg {
  margin-bottom: 20px;
  display:inherit;
  text-align: inherit;
  max-width: 90vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  }
  
  
#active {
  color: #660afc;
}

/* paragraph styling */

.contentText {
  font-family: textFont, Arial, sans-serif;
  font-size: 24px;
}

#aboutDiv {
  display: block;
  text-align: left;
  max-width: 60%;
  margin-left: 20%;
}




#samDiv {
  padding-left: 10vw;
  max-width: 480px; 
  font-family: altTextFontItalic, serif; 
  font-size: 20px; 
  text-align:right;
}

@media screen and (min-width: 481px) {
  .dropbtn {
    display: none;
    }
  }
/* Styling for mobile */


@media screen and (max-width: 480px) {
  
  .buttonDiv {
    display:flex;
    flex-direction:column;
  }
  
  .button {
    font-size:15px;
  }
  .headerImg {
    max-width:100%;
  }
  .navButton {
    font-size:15px;
  }
  img {
    max-width:100%;
    height:auto;
  }
  
  .sidebar {
    display: none;  
  }
  
  .dropbtn {
    display:block;
    text-align:center;
  }
  .artImg {
    width:100%;
  }
  
  #bio {
  font-family: textFont, Arial, sans-serif;
  font-size: 20px;
  }
}
