body, html {
  height: 100%;
  margin: 0;
  /*font: 400 15px/1.8 "Lato", sans-serif;*/
  color: #777;
  background-color: 
}

:root {
  /*COLORS FROM PARALLAX IMAGES*/
  --light-color: #F0ECE1;
  --light-color-alt: #87828A;
  --dark-color: #1F1F21;
  --dark-color-alt: #102C3D;
  --accent-color: #CD7069;
  
  /*FONTS*/
  --titlefont: 400 15px/1.8 "Times New Roman", serif;
  --headerfont: 400 20px/1.8 "K2D", sans-serif;
  --paragraphfont: 400 15px/1.8 "Lato", sans-serif;
  --monospacefont: 400 15px/1.8 "Source Code Pro", monospace;
}

footer {
  background-color: var(--dark-color);
  font: var(--paragraphfont);
  color: var(--light-color-alt);
  margin: 0;
  padding: 20px;
  border-top: var(--light-color-alt) 5px solid;
}

.terminal-animation p {
  width: 100%;
  padding-top: 40vh;
  font: var(--monospacefont);
  color: white;
}

@keyframes slideup {
  0% {top: 0;}
  100% {top: -100vh; bottom: 0;}
}

.terminal-animation {
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(var(--dark-color),#333);
  height: 100%;
  position: fixed;
  animation-name: slideup;
  animation-duration: 4s;
  animation-delay: 10s;
  animation-fill-mode: forwards; 
  animation-iteration-count: 1;
  z-index: 15;
}

.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-tcu, .bgimg-web, .bgimg-engr {
  position: relative;
  opacity: 0.65;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("img_parallax.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("img_parallax2.jpg");
  min-height: 400px;
}

.bgimg-3 {
  background-image: url("img_parallax3.jpg");
  min-height: 400px;
}

.bgimg-4 {
  background-image: url("img_parallax4.jpg");
  min-height: 100%;
}

.bgimg-tcu {
  background-image: url("frogfountain.jpg");
  min-height: 100%;
}

.bgimg-web {
  background-image: url("web_busy.jpg");
  min-height: 100%;
}

.bgimg-engr {
  background-image: url("workbench.jpg");
  min-height: 100%;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: var(--light-color);
  font: var(--titlefont);
  z-index: 3;
}

.caption div.border {
  display: inline-block;
  margin: 0 auto;
  background-color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 25px;
  letter-spacing: 10px;
  text-align: center;
}

.caption div.border p {
  font: var(--monospacefont);
  letter-spacing: 5px;
  font-size: 15px;
}

.caption div.border a {
  text-decoration: none;
  color: var(--light-color);
}

.caption div.border a:hover {
  color: var(--light-color-alt);
}

.section-dark {
  position: relative;
  width: 100%;
}

.section-dark div {
  color: var(--light-color);
  background-color: var(--dark-color);
  text-align: center;
  padding: 50px 80px;
  text-align: justify;
}

h3 {
  font: var(--headerfont);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
}

h5 {
  font: var(--paragraphfont);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
}

p {
  font: var(--paragraphfont);
}

.section-light {
  text-align: center;
  padding: 50px 80px;
  text-align: justify;
}

.section-tab {
  box-sizing: border-box;
  position: relative;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 0;
  width: 100%;
}

.section-tab h3 {
  text-align: left;
}

.section-tab ul {
  font: var(--paragraphfont);
}

.section-tab a {
  color: var(--light-color);
  font: var(--paragraphfont);
}

.section-tab a:hover {
  color: var(--light-color-alt);
}

.float-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar {
  width: 100;
  list-style-type: none;
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
  background-color: var(--dark-color);
  border-bottom-style: solid;
  border-bottom-color: var(--light-color-alt);
  border-bottom-width: 2px;
}

.navtab {
  height: 100%;
  display: inline-block;
  text-align: center;
  padding-top: 10px; 
  padding-bottom: 10px; 
  padding-left: 25px;
  font-size: 16px;
}

.navtab li {
  color: var(--light-color);
  font: var(--titlefont);
  font-size: 15px;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
}

.navtab:hover li {
  text-decoration: none;
  color: var(--light-color-alt);
}

.navbar a:link {
  text-decoration: none;
}

.navbar a:active {
  text-decoration: none;
  color: var(--dark-color-alt);
}

.navbar a:visited {
  text-decoration: none;
}

.horizontal-list {
  list-style-type: none;
  text-align: center;
}

.horizontal-list li {
  font: var(--paragraphfont);
  display: inline-block;
  text-align: center;
  padding: 8px;
}

.horizontal-list-thin {
  list-style-type: none;
  height: 20px;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 10px;
  margin: 0;
}

.horizontal-list-thin li {
  font: var(--paragraphfont);
  display: inline-block;text-align: center;
  padding-right: 17px;
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  text-align: left;
  border-right: var(--light-color) 1px solid;
}

.horizontal-list-thin li:first-child {
  font: var(--paragraphfont);
  display: inline-block;text-align: center;
  padding-right: 17px;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  text-align: left;
  border-right: var(--light-color) 1px solid;
}

.horizontal-list-thin li:last-child {
  border-right: none;
}

.see-more-section {
  width: 100%;
  background-color: var(--dark-color);
}

.see-more-section div {
  border-bottom-style: solid;
  border-bottom-color: var(--light-color-alt);
  border-bottom-width: 5px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 80px;
  padding-right: 80px;
  text-align: left;
  background-color: var(--light-color);
  color: var(--dark-color-alt);
}

.see-more-section div p {
	display: block;
	width: 100%;
}

.see-more-section div a {
	padding-left: 0;
	border-style: none;
	text-decoration: none;
	color: var(--light-color-alt);
}

.see-more-section div a:visited {
	text-decoration: none;
	color: var(--light-color-alt);
}

.see-more-section div a:hover {
	text-decoration: none;
	color: var(--dark-color-alt);
}

.see-more-section h3 {
  text-align: left;
}

.see-more-section a {
  display: block;
  font: var(--paragraphfont);
  padding-left: 80px;
  padding-bottom: 20px;
  border-bottom-style: solid;
  border-bottom-color: var(--light-color-alt);
  border-bottom-width: 5px;
  color: var(--light-color);
}

.see-more-section ul {
  width: 100%;
  font: var(--paragraphfont);
  color: var(--dark-color-alt);
}

.see-more-section a:hover {
  color: var(--light-color-alt);
}

.closed {
	display: none;
}

.open {
	display: inline-block;
}

/*.see-more-content a {
  width: 100%;
  font: var(--paragraphfont);
  color: var(--light-color-alt);
  text-decoration: none;
}

.see-more-content a:hover {
  width: 100%;
  font: var(--paragraphfont);
  color: var(--dark-color);
  text-decoration: none;
}*/

footer {
	text-align: center;
}

.linked-in-image {
  width: 100px;
  padding-top: 20px;
}

.linked-in-image:hover {
  opacity: 0.5;
}

.construction-image {
  width: 100px;
  padding-top: 20px;
}