/* this one works just fine */
.header {
  padding: 0%;
  text-align: center;
  }
  
/* this one works just fine */
.logo {
  width: 25%;
  float: center; 
  }



/* this one works just fine */
/*Set height of body and the document to 100% to enable "full page tabs"*/
body, html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.image {
  max-width: 60%;
  float: left;
  padding-right: 1em;
}


.content { 
  max-width: 90%;
}

.pullquote {
  font-size: x-large;
  font-style:italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: rgb(56,3,86)
  display: block;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.contact-block {
  background-color: rgb(56,3,86);
  color: whitesmoke;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 2em;
  padding-bottom: 2em;
  display: block;
  text-align: center;
}

.contact-block > p {
font-family:Georgia, 'Times New Roman', Times, serif;
font-style: italic;
font-size:x-large;
}

.nav {
  background-color: rgb(56, 3, 86);
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding-bottom: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
  margin-top: 2em;
  font-size: 1em;
  width: 25%;
}

.nav:hover {
  background-color: rgb(220,211,220);
  color:rgb(56,3,86);
}

.nav:active {
  color:rgb(56,3,86);
}

/* this one works just fine */
/* Style tab links */
.tablink {
  background-color: rgb(56, 3, 86);
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding-bottom: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
  margin-top: 2em;
  font-size: 1em;
  width: 25%;
}

/* this one works just fine */
.tablink:hover {
  background-color: rgb(220,211,220);
  color:rgb(56,3,86);
}

/* this one does not work */
/* I tried including this to persistently change the text of the active button, but it did not work */
.tablink.active {
  color:rgb(56,3,86);
}

/* this one does not work */
/* I also, separately, tried including this to persistently change the text of the active button, but it did not work */
.button.tablink {
  color:rgb(56,3,86);
}

/* this one works just fine */
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: rgb(56,3,86);
  display: grid;
  float: center;
  margin: 1em 3em 5em;
}

/* this one works just fine */
#Services {background-color: rgb(255, 255, 255)}
#About {background-color: rgb(255, 255, 255)}
#Contact {background-color: rgb(255, 255, 255)}
#Resources {background-color: rgb(255, 255, 255)}


/* borrowed this from web tutorial -- controls the photo + subhead + page intro section */
/* this one works just fine */
.media {
  display: grid;
  background-color:rgb(220,211,220);
  margin: auto;
  
}

/* this one works just fine */
.media__object {
  float: left;
  max-width: 40%;
  padding: 2em;
}

/* this one works just fine */
.media__content {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

/* this one works just fine */
.subhead {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: xx-large;
  font-weight: lighter;
  text-align: left;
  color: rgb(56, 3, 86);
  padding-right: 2em;
}

/* this one works just fine */
.intro {
  margin-left: auto;
  font-weight: lighter;
  padding-right: 2em;
}
/* end of code for photo + intro section */


/* this is the code for the rest of the body content, which presents in a bullet point list */
/* this one works just fine */
.topic {
  margin-left: -2em;
  color: rgb(56,3,86);
  font-weight: lighter;
  font-style: italic;
  font-weight: bolder;
  padding-bottom: 0.1em;
}

/* this one works just fine */
ul.a {
  list-style-type: circle;
  margin-left: 6em;
  font-weight: bold;
}

/* this one works just fine */
ul.b{
  list-style-type: circle;
  font-weight: lighter;
  margin-left: -2em;
}

/* this one works just fine */
ul.b.li{
  margin-bottom: 0.5em;
}

/* this one works just fine */
.list-sub {
  font-style: normal;
  margin-top: -1em;
  font-weight: lighter;
}
/* end of body copy bullet point list section */

/* this one works just fine */
.footer {
  color: black;
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  font-size: 12px;
}


/* icons change color on hover for abstract nav bar */

.container {
  position: relative;
  width: 100%;
}

.image {
  max-width: 20%;
  height: auto;
/*  float: left;  */
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 20%;
  opacity: 0;
  transition: .5s ease;
  background-color: none;

}

.container:hover .overlay {
  opacity: 1;
  float: inherit;
}

/*not working yet */
.hover-text {
  padding-left: 10em;
  font-family: sans-serif;
  color: rgb(109, 110, 113);
  display: inline-block;

}

/* haven't tested on this site for mobile yet, but is boiler plate from my previous sites where it worked properly */
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
.responsive {
  height: auto;
  display: inline-block;
  margin: auto;
}

@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
/* end of responsive @media code sction */