@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

/* https://fonts.googleapis.com/css2?family=Roboto&display=swap */
body {
  padding: 0px 0px;
  margin: 0px 0px;
  font-family: "Monserrat", sans-serif;
}

.container {
  /* background-color: beige; */
  margin-top: 75px;
  padding-top: 75px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 20px;
}

/* nav styles */

.nav-outer {
  width: 100%;
  height: 70px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 11%);
  position: fixed;
  top: 0;
  background-color: white;
}

.nav-items {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 20px;
  list-style-type: none;
  height: 70px;
}

.nav-item {
  margin-left: 20px;
  font-size: 16px;
  color: #34495e;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

.nav-item:hover {
  color: #33b38d;
}

.spacer {
  min-height: 60px;
}

.about-me-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .about-me-section {
    flex-direction: column;
  }
}

.face-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  object-position: center top;
}

.face-and-name {
  width: 33%;

  text-align: center;
  padding-top: 30px;
  padding-right: 10px;
  /* padding: 10px 30px 10px 0px; */
}

.garrett-roell {
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.job-title {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.54);
  margin-top: 0px;
  margin-bottom: 10px;
}

.about-me-link {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  /* color: #005555; */
  text-decoration: none;
  margin-top: 0px;
  margin-bottom: 10px;
}

.about-me-link:hover {
  color: #33b38d;
}

.about-me-anchor {
  text-decoration: none;
  color: #005555;
}

.about-me-anchor:visited {
  color: #005555;
  text-decoration: none;
}

.about-me-anchor:hover {
  text-decoration: underline;
  color: #33b38d;
}

.social-icons {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}

.google-scholar-icon {
  background: url("/icons/google-scholar.svg");
  height: 50px;
  width: 50px;
  display: block;
  margin-right: 5px;
  font-size: 0px;
}

.google-scholar-icon:hover {
  background-color: lightgray;
  border-radius: 50%;
}

.github-icon {
  background: url("/icons/github.svg");
  height: 40px;
  width: 40px;
  display: block;
  margin-left: 10px;
  margin-right: 30px;
  font-size: 0px;
}

.github-icon:hover {
  background-color: lightgray;
  border-radius: 50%;
}

.description {
  width: 67%;
  padding-left: 10px;
  /* padding: 0px 10px; */
}

.about-me-header {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  color: #313131;
}

.about-me-text {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 35px;
  color: #313131;
}

@media (max-width: 800px) {
  .face-and-name {
    width: 100%;
  }
  .description {
    width: 100%;
  }
}

.interests-and-education {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.interests {
  width: 40%;
  height: 200px;
}

.interests-title {
  font-size: 25px;
  font-family: Montserrat, sans-serif;
  color: #313131;
  font-weight: bold;
}

.interests-list {
  line-height: 30px;
}

.interest-item {
  font-size: 18px;
  font-family: Roboto, sans-serif;
  color: #313131;
}

.education {
  width: 60%;
  height: 200px;
}

.education-title {
  font-size: 25px;
  font-family: Montserrat, sans-serif;
  color: #313131;
  font-weight: bold;
}

.education-list {
  line-height: 30px;
  list-style-type: none;
  padding-left: 10px;
}

.education-item {
  font-size: 18px;
  font-family: Roboto, sans-serif;
  color: #313131;
  margin-bottom: 10px;
  display: flex;
}

.graduation-cap-icon {
  background: url("/icons/graduation-cap.svg");
  height: 21px;
  width: 25px;
  margin-top: 5px;
}

.education-text {
  padding-left: 10px;
  line-height: 27px;
}

.degree {
  margin: 0px 0px;
}

.university {
  margin: 0px 0px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1000px) {
  .interests-and-education {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .interests {
    width: 100%;
  }
  .education {
    width: 100%;
  }
}

.skills {
  background-color: #f7f7f7;
  padding: 30px 0px;
  margin-top: 50px;
}

.skills-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
}

.skills-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0px 0px;
  padding: 0px 0px;
}

.skill-item {
  width: 32%;
  margin: 0px 0.5%;
  margin-bottom: 10px;
  height: 200px;
  /* background-color: coral; */
}

.programming-icon {
  background: url("/icons/programming-symbol.svg");
  height: 80px;
  width: 128px;
  margin-top: 5px;
  /* background-color: crimson; */
  margin: 2px auto;
}

.metabolic-map-icon {
  background: url("/icons/abstract-metabolic-map.svg");
  height: 84px;
  width: 128px;
  margin-top: 5px;
  /* background-color: crimson; */
  margin: auto;
}

.leadership-icon {
  background: url("/icons/leadership.svg");
  height: 84px;
  width: 84px;
  margin-top: 5px;
  /* background-color: crimson; */
  margin: auto;
}

.skill-text {
  text-align: center;
}

.skill-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  color: #333333;
  margin-top: 15px;
  margin-bottom: 5px;
}

.skill-details {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #555555;
  margin: 0px 0px;
}

@media (max-width: 800px) {
  .skills-list {
    flex-direction: column;
  }
  .skill-item {
    width: 99%;
  }
}

.projects {
  background-color: white;
}

.projects-title-and-list {
  display: flex;
  flex-direction: row;
}

.projects-title {
  width: 33%;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
}

.projects-list {
  width: 67%;
  padding-top: 40px;
}

@media (max-width: 800px) {
  .projects-title-and-list {
    flex-direction: column;
  }
  .projects-title {
    width: 100%;
    text-align: start;
  }
  .projects-list {
    width: 100%;
    padding-top: 0px;
  }
}

.project-tile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.project-tile-title {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  color: #151515;
  margin: 0px 0px;
}

.project-tile-title-link {
  text-decoration: none;
  color: #151515;
}

.project-tile-title-link:visited {
  color: #151515;
}

.project-tile-title-link:hover {
  color: #005555;
  text-decoration: underline;
}

/* .project-tile-title:hover {
  color: #005555;
  text-decoration: underline;
} */

.project-tile-subtitle {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #555555;
  margin: 10px 0px;
}

.subtitle-link {
  /* text-decoration: none; */
  color: #005555;
}

.subtitle-link:visited {
  color: #005555;
}

.subtitle-link:hover {
  /* text-decoration: underline; */
  color: #008989;
}

.project-image {
  width: 150px;
  height: 150px;
  margin-left: 20px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: left top;
}

.btn-group {
  margin-bottom: 30px;
}

.btn-group button {
  background-color: #005555; /* Green background */
  color: white; /* White text */
  font-family: Roboto, sans-serif;
  font-size: 16px;
  padding: 7px 20px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
  border: none;
}

.btn-group button:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.btn-group button:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #288b6e !important;
}

@media (max-width: 400px) {
  .btn-group button {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.publications {
  background-color: #f7f7f7;
}

.publications-title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
}

.phenol-icon {
  background: url("/icons/phenol.svg");
  height: 150px;
  width: 150px;
  margin: auto;
}

.ata-icon {
  background: url("/icons/ata-logo.svg");
  height: 150px;
  width: 150px;
  margin: auto;
}

footer {
  color: black;
  text-align: center;
  margin: 80px auto 0px;
  padding-bottom: 20px;
}

h2 {
  margin-bottom: 40px;
}

h3 {
  /* text-transform: capitalize; */
  margin-bottom: 8px;
}

.content {
  margin-left: 20px;
}

/* index styles */
/* details styles */
/* create styles */
.create-blog form {
  max-width: 400px;
  margin: 0 auto;
}

.create-blog input,
.create-blog textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 8px;
}

.create-blog label {
  display: block;
  margin-top: 24px;
}

textarea {
  height: 120px;
}

.create-blog button {
  margin-top: 20px;
  background: crimson;
  color: white;
  padding: 6px;
  border: 0;
  font-size: 1.2em;
  cursor: pointer;
}
