html {
    scroll-behavior: smooth;
  }
  
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FFF;
}
  
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
  
h1 {
  margin-top: 0px;
  margin-bottom: 10px;
}

.hidden-content {
  display: none;
}


/* Home */
.pate-hubbard {
  margin: 0px;
  font-size: 2.5em;
}

.sub-titles {
  color: #797979;
  font-size: 14px;
  margin: auto;
}

.sub-titles p {
    margin: 0;
}

@media only screen and (min-width: 961px) {
    .pate-hubbard {
        font-size: 3.5em;
    }

    .sub-titles {
        font-size: 20px;
    }
    .home {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding-top: 50px;
      padding-bottom: 50px;
    }
}

/* About */
.about-information img {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 961px) {
  .about-information {
      display: flex;
      justify-content: center;
      align-items: center;
  }
}


/* Skills */
.skills-grid {
  margin-top: 20px;;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.certifications li {
  list-style-type: circle;
}


@media only screen and (min-width: 961px) {
  .skills-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
}
}

/* Projects */
.project-list {
  flex-wrap: wrap;
}

.project-list div {
  display: inline-block;
}

.project-link {
  color: black;
}

.inactive-project {
  color: #858585;
  transition: 0.25s;
}

.inactive-project:hover {
  color: #b3b3b3;
}

.project-list span {
  text-decoration: none;
  margin-right: 15px;
  cursor: pointer;
}

.project-content {
  background-color: #F8F8F8;
  min-height: 100px;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.project-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.project-image {
  width: 75%;
  margin-top: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Experience */
.experience-line {
  border-left: 3px solid #557A95;
  padding-top: 20px;
  padding-bottom: 10px;
}

/* Bookshelf */
.bookshelf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bookshelf-grid img {
  display: block;
  margin: auto;
  margin-bottom: 25px;
  margin-top: 25px;
  max-width: 125px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
}

.bookshelf-grid img:hover {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.35);
}

.bookshelf hr {
  width: 65px;
}


@media only screen and (min-width: 961px) {
  .bookshelf-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
}
  .bookshelf hr {
      width: 200px;
  }
}

/* Contact */
.contact-info {
  margin-bottom: 30px;
  display: inline-block;
  margin-left: 35px;
  margin-right: 35px;
}

.contact-info a {
  text-decoration: none;
  color: black;
}

.contact-info-flex-wrap {
  flex-wrap: wrap;
}

.contact-info svg {
  height: 50px;
  width: 50px;
  margin: auto;
  display: block;
}

.contact-info rect, path {
  stroke: #557A95;
}

.contact-info h3 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0px;
}

/* Footer */
.footer small {
  color: #858585;
}

/* Errors */
.error-404 h1, h3 {
  color: #557A95;
}