
:root {
    --text-font-color: #FFFAF0;
}

body {
    background: #696969;
    font-family: 'Raleway', sans-serif;
}

.blurb h1 {
  font-family: 'Kreon', serif;
  font-size: 4.5rem;
  color: black;
  text-align: center;
}

.blurb h2 {
    font-family: 'Kreon', serif;
    font-size: 1.7rem;
    color: var(--text-font-color);
    text-align: center;
    color:#d4eb81
}

.blurb h3 {
    font-family: 'Kreon', serif;
    font-size: 2.3 rem;
    color: var(--text-font-color);
    text-align: center;
}

.blurb h4 {
    font-family: 'Kreon', serif;
    font-size: 4.5rem;
    color: black;
    text-align: center;
}

.blurb p {
    font-size: 1.125rem;
    font-weight: 100;
    line-height: 1.80;
    color: var(--text-font-color);
    text-align: left;
}

.subHead1 {
  font-size: 1.9rem;
  color: var(--text-font-color);
  text-align: center;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }

.content {
    margin-top: 20px;
}

.size {
    height: 230px;
    width: 230px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border:5px solid #800000;
  }
  
.caption {
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
    color: var(--text-font-color);
}

.partsList {
    margin-left: 35px;
    margin-right: 10px;
    text-align: left;
    text-indent: -35px;
    color: var(--text-font-color);
    font-size: 1.2rem;
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 0;
}

.indented {
  text-indent: 30px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
  color:  var(--text-font-color);
}

#wraptext2columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }

#wraptext2columns p {
    margin: 10px;
  }

#wraptext2columns p + p {
    text-indent: 1em;
  }

.TextInABox {
    border: 2px solid rgb(248, 255, 185);
    padding: 12px;
    margin: 0px;   
    margin-top: 5px;
    margin-bottom: 10px;
}

.hLine{
    background-color:darkgray;
    height:  2px;
    width: 50%;
    margin-left: 25%;   
    margin-bottom: 2%;   
}

#mainNavbar {
    font-size: 1.2rem;
    font-weight: 100;
}

#mainNavbar .nav-link {
    color: coral;
}

#mainNavbar .nav-link:hover {
    color: white;
    font-weight: 300;
}

#mainNavbar .navbar-brand {
    color: var(--text-font-color);
}

#headingGroup {
    color: var(--text-font-color);
}

#headingGroup span {
    /* color: var(--text-font-color); */
    color: white;
}

a:link {
  color: #08ee00;
}

/* visited link */
a:visited {
  color: #f8ae5a;
}

.navbar.scrolled {
    background: #696969;
    transition: background 500ms;
}

/* Get the logos to be side-by-side in the same container */

.img-wrapper {
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-size: cover;
    background-repeat: none;
    background-position: center;
    }
  
  .container {
    display: flex;
    justify-content: center;
  }
  
  .card {
    width: 536px;
    margin: 0 10px;
    text-align: center;
    background: #696969;
    border: 0px black solid;
/*    padding-bottom: 5px;  */
  }


/*    Add large quotes before and after some text  */
  blockquote {
    font-family: Georgia, serif;
    position: relative;
    margin: 0.5em;
/*    padding: 0.5em 2em 0.5em 3em; */
    padding: 0.5vw 3vw 0.5vw 4vw;
    color: var(--text-font-color);
}
blockquote:before {
    font-family: Georgia, serif;
    position: absolute;
/*    font-size:6em; */
    font-size: 7vw;
    line-height: 1;
    top: 0;
    left: 0;
    content: "\201C";
}
blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
/*    font-size:6em; */
    font-size: 7vw;
    line-height: 1;
    right:0;
    bottom:-0.5em;
    content: "\201D";
}
blockquote footer {
    padding: 0 2em 0 0;
    text-align:right;
}
blockquote cite:before {
    content: "\2013";
    color: var(--text-font-color);
}

/* when the browser width is 1200px or less do this */

@media (max-width: 1200px) {
    #mainNavbar {
        background: #696969;
    }
}

 
/* Apply .graph2col when the viewport is at least 768px wide (e.g., for medium-sized screens) */
@media (min-width: 900px) {
  .graph2col {
    column-width: 400px;
    columns: 350px 2;
    column-gap: 50px;    
  }
}

/* Apply .graph2col when narrower then above */
@media (max-width: 899px) {
  .graph2col {
    /* No Style if narrow */
  }
}


/***************************** Hamburger Menu Stuff **/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
body {
    font-family: 'Roboto', sans-serif;
    color: #444444;
  }

a {
  color: #ff7013;
  text-decoration: none;
}
.hamburger-menu-button {
  width: 30px;
  height: 30px;
  padding: 0px;
  display: block;
  position: fixed;
  margin-top: 10px;
  z-index: 10;
  background: #696969;
  border-radius: 0px;   /* 50% for circle */
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  outline: 0;
  border: none;
  background: none;
  margin-top: -18px;
  margin-left: -11px;
}
.hamburger-menu-button-open {
  top: 50%;
  margin-top: -1px;
  left: 50%;
}
.hamburger-menu-button-open, 
.hamburger-menu-button-open::before, 
.hamburger-menu-button-open::after {
  position: absolute;
  width: 17px;
  height: 3px;
  background: black;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger-menu-button-open::before, 
.hamburger-menu-button-open::after {
  left: 0;
  content: "";
}
.hamburger-menu-button-open::before {
  top: 6px;
}
.hamburger-menu-button-open::after {
  bottom: 6px;
}
.hamburger-menu-button-close {
  background: transparent;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hamburger-menu-button-close::before {
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
.hamburger-menu-button-close::after {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.ham-menu {
  position: absolute;
  top: 10px;
  left: 0px;
  margin: auto;
  max-width: 230px;
  overflow: hidden;
  position: fixed;
  z-index: 3;
}
.ham-menu ul {
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
/*  background-color: #3896d3; */
  background-color: rgb(70, 70, 70);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ham-menu.on ul {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.ham-menu ul {
  font-size: 0;
}
.ham-menu ul li {
  display: inline-block;
}
.ham-menu ul li:first-child .ham-menu ul li a {
  padding-left: 30px;
}
.ham-menu ul li a {
  padding: 7px;
  display: block;
  background-color: transparent;
  color: #43db15;
  /* text-transform: uppercase; */
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
}
.ham-menu ul li.active a, .ham-menu ul li a:hover {
  background-color: #686868;
  color: white !important;
} 
