@charset "utf-8";
/* CSS Document */

html {
margin: 0;
  padding: 0;
}

body {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.container-header {
  width: 95%;
  margin: auto;
  overflow: hidden;
}


header { padding-top: 25px; padding-left: 20px; margin: 0px; background: #000; color: white; }
header h1 { 
margin: 0; 
font-size: 3em;
}



h2 {
  border-bottom: 1px solid #AAA;
  margin-bottom: 10px; 
  margin-top: 50px; 
}

h3 {
  margin-top: 30px;
  margin-bottom: 5px; 
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.navbar li {
  float: left;
  display: inline;
  padding: 0 20px 0 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
}

#about,
#education,
#projects,
#skills,
#experience {
  margin-bottom: 20px;
}

.education-entry,
.project-entry,
.experience-entry {
  margin-bottom: 10px;
}


.footer {
  background: #50b3a2;
  color: white;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* revert back to 100% if necessary */
  height: 95%; /* revert back to 95% if necessary */
}


/* Mobile default, lines between contact info at top are hidden */
.desktop {
  display: none;
}

/* Mobile default, breaks between contact info at top are displayed */
.mobile {
  display: inline;
}

.image-row {
 display: flex;
 justify-content: left;
 align-items: left;
 flex-wrap: nowrap;
 }
 
/* Responsive image row container */
.grid_container { 
display: grid;
grid-column-start: col 0;
grid-gap: 0.2%;
grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
grid-template-rows: repeat(auto-fit, 1fr);
}

.grid_container img {
vertical-align: baseline;
width: 100%;
height: auto;
}

/*CSS for Desktop*/
.thumbnail {
 height: 125px;

 margin: 5px 15px 15px 0px;
 object-fit: contain;
 }

/*CSS for Mobile*/
@media (max-width: 768px) {
 .thumbnail {
  height: 75px;
  }
 }

/* Above 1000px viewport, contact info does not wrap, it stretches */
@media screen and (min-width: 1000px) {
    .desktop {
        display: inline;
    }
    .mobile {
        display: none;
    }
}

/* Shrinks header font for mobile screens */
@media screen and (max-width: 813px) {
    header {
    padding-top: 70x; padding-bottom: 70x; padding-left: 10px; margin: 0px; background: #000; color: white;
    }
    header h1 { 
    margin: 0; 
    font-size: 1.5em;
    }
}
