:root {
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Nunito", sans-serif;
  --button-font: "Montserrat", sans-serif;
  --primary-color: rgb(239, 238, 234);
  --secondary-color: rgb(39, 63, 79);
  --tertiary-color: rgb(0, 0, 0);
  --high-light-color: rgb(254, 119, 67);
}
body {
  background-color: var(--primary-color);
}
h1 {
  font-family: var(--primary-font);
  font-size: 48px;
}
h3 {
  font-family: var(--primary-font);
  font-size: 20px;
}
p {
  font-family: var(--secondary-font);
}
nav {
  padding: 0px;
}
nav ul {
  margin-right: 10px;
  padding: 20px 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 40px;
  font-size: 18px;
  font-family: var(--button-font);
  margin-left: 25px;
}
nav a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 100ms ease-in-out;
}
nav a:hover {
  color: var(--high-light-color);
}
nav li.active a {
  display: none;
}
.logo {
  max-width: 80px;
  display: block;
}

.about-me {
  font-family: var(--primary-font);
  color: var(--high-light-color);
  font-size: 16px;
}
.footer-email-link {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  color: var(--secondary-color);
  margin: 10px auto;
  transition: all 100ms ease-in-out;
}
.footer-email-link:hover {
  color: var(--high-light-color);
}
.social-links {
  display: flex;
  justify-content: center;
}
.social-links a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 10px 20px 20px;
  font-size: 30px;
  transition: all 100ms ease-in-out;
}
.social-links a:hover {
  color: var(--high-light-color);
}
#nav-container {
  position: fixed;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(239, 238, 234, 0.8);
  backdrop-filter: blur(10px);
  margin: 0px 5px;
  max-width: 100%;
  max-height: 80px;
}
#primary-heading {
  text-align: left;
  margin-bottom: 30px;
}
#home-page-hero {
  text-align: left;
  margin: 0;
  padding: 230px 400px 150px 200px;
}
#home-page-hero h2 {
  font-family: var(--primary-font);
  font-size: 40px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), #efeeea 99%);
  color: transparent;
  background-clip: text;
}
#hero-image {
  max-width: 400px;
  border-radius: 10px;
}
#featured-projects {
  color: var(--high-light-color);
  font-family: var(--button-font);
}
#featured-projects-container {
  margin: 100px auto;
}
#footer-bar {
  margin: 60px auto;
}

#about-page-content {
  margin: 0 auto;
  padding: 230px 50px 150px 50px;
}

#button-link {
  font-family: var(--button-font);
  color: #ffff;
  transition: all 100ms ease-in-out;
  padding: 10px 20px;
}
#button-link:hover {
  color: var(--high-light-color);
}
#app-desription h2 {
  font-family: var(--primary-font);
  font-size: 32px;
}
#app-description p {
  margin: 20px auto;
}
#launch-button {
  background-color: var(--secondary-color);
  line-height: 28px;
  font-size: 18px;
  margin: 15px auto;
  transition: all 100ms ease-in-out;
}
#launch-button:hover {
  box-shadow: 0 0 5px 5px rgba(254, 119, 67, 0.3);
}
#head-shot-container {
  text-align: right;
}
#head-shot {
  max-width: 300px;
}
#work-page-image {
  border-radius: 10px;
}
#work-tag-description {
  line-height: 0.5;
}
#work-tag-description h3 {
  font-size: 24px;
}
#project-container {
  margin: 100px auto;
}
#project-heading {
  padding-top: 200px;
}
#project-heading h1 {
  font-size: 32px;
  color: var(--high-light-color);
}
#contact-me-hero {
  text-align: left;
  margin: 0;
  padding: 230px 400px 150px 200px;
}
#contact-me-hero h1 {
  color: var(--high-light-color);
}
#contact-box {
  display: flex;
  justify-content: space-between;
  background-color: rgba(39, 63, 79, 0.4);
  padding: 30px 120px;
  margin: 0px 300px;
  border-radius: 10px;
}
#contact-box p {
  margin: 0;
}
@media (max-width: 1200px) {
  #contact-box {
    display: block;
    text-align: center;
    background-color: rgba(39, 63, 79, 0.4);
    padding: 30px 0px;
    margin: 0px 300px;
    border-radius: 10px;
  }
  #contact-box button {
    margin-bottom: 0px;
  }
  #about-page-content {
    text-align: center;
  }
  #head-shot-container {
    text-align: center;
    margin-top: 100px;
  }
  #contact-me-hero {
    padding: 500px 20px 390px 20px;
    text-align: center;
  }
}
@media (max-width: 900px) {
  #home-page-hero {
    text-align: left;
    margin: 0;
    padding: 230px 200px 150px 150px;
  }
}
@media (max-width: 769px) {
  nav li {
    line-height: 40px;
    font-size: 14px;
  }
  #home-page-hero {
    padding: 210px 20px 90px 20px;
    text-align: center;
  }
  #home-page-hero h1 {
    font-size: 32px;
    text-align: center;
  }
  #home-page-hero h2 {
    font-size: 28px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), #efeeea 99%);
    color: transparent;
    background-clip: text;
  }
  #featured-projects-container {
    margin: 50px auto;
  }
  #app-desription {
    padding: 0;
    text-align: center;
  }
  #launch-button {
    margin-bottom: 40px;
  }
  #head-shot-container {
    text-align: center;
    margin-top: 50px;
  }
  #head-shot {
    margin-top: 50px;
    max-width: 200px;
  }
  #contact-box {
    display: none;
  }
  #contact-me-hero {
    padding: 200px 20px 100px 20px;
    text-align: center;
  }
  #contact-me-hero h1 {
    color: var(--high-light-color);
    font-size: 32px;
  }

  .footer-email-link {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    color: var(--secondary-color);
    margin: 10px auto;
    transition: all 100ms ease-in-out;
  }
  .footer-email-link:hover {
    color: var(--high-light-color);
  }
}
