:root {
  --title-font: "Playfair Display", serif;
  --content-font: "Poppins", serif;
  --accent-color: #5982ff;
  --secondary-color: #dfe9f8;
  --muted-text: rgba(39, 33, 66, 1);
}

/* generic styles */
.home-nav {
  background-color: var(--secondary-color);
}
div.navigation {
  padding: 0 5%;
}
nav {
  padding: 40px 0;
}
nav ul {
  margin: 0;
  padding: 0;
}
nav li {
  display: inline;
  text-decoration: none;
  margin-left: 10px;
}
nav a {
  color: var(--muted-text);
  opacity: 70%;
  text-decoration: none;
}
nav li.active a,
nav a:hover {
  color: var(--accent-color);
  opacity: 100%;
  transition: all 100ms ease-in-out;
}

body {
  font-family: var(--content-font);
}
.home-link {
  color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}
h1,
h2 {
  font-size: 64px;
  font-weight: bold;
}
h4 {
  font-size: 48px;
  font-weight: bold;
}
p {
  font-size: 16px;
  margin-bottom: 65px;
  color: var(--muted-text);
  opacity: 70%;
  line-height: 30px;
}
.button {
  text-decoration: none;
  font-size: 18px;
  background-color: var(--accent-color);
  color: #ffff;
  border: none;
  border-radius: 4px;
  padding: 18px 50px;
}
.app-description {
  margin: 44px 0 15px 0;
}

/* specific styles */

/* Homepage */

.homepage-nav {
  background-color: var(--secondary-color);
}
.hero {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 245px 10px;
  padding-top: 175px !important;
}
.hero p {
  opacity: 100%;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 21px;
}
.hero h1 {
  font-size: 96px;

  font-weight: bold;
}
.hero h2 {
  font-family: var(--content-font);
  font-size: 24px;
  font-weight: 400;
  color: var(--muted-text);
  margin: 36px 0;
  margin-bottom: 57px;
}
.content-description {
  font-size: 18px;
  color: var(--muted-text);
}
.project-description {
  padding: 120px 60px;
}
.homepage-projects a {
  text-decoration: none;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  padding: 18px 30px;
}

/* Content class */
.content {
  padding: 96px 42px;
}
.content h1 {
  line-height: 85px;
}
.content h2 {
  font-family: var(--content-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 36px 0;
}
.content h3 {
  font-size: 24px;
  font-family: var(--content-font);
  line-height: 36px;
  font-weight: 700;
}
.content p {
  font-size: 14px;
  margin-bottom: 0px;
}
footer {
  padding: 20px 0;
}
footer .work-inquiry {
  background-color: var(--secondary-color);
  padding: 30px;
  margin: 92px 8%;
  border-radius: 20px;
  padding: 49px 119px;
}
footer .work-inquiry .button {
  padding: ;
}
footer .email-link {
  color: black;
  font-size: 24px;
  text-decoration: none;
  transition: all 100ms ease-in-out;
}
footer .email-link:hover {
  color: var(--accent-color);
}
footer .socials-links a {
  color: var(--accent-color);
  background-color: var(--secondary-color);
  padding: 10px 15px;
  margin: 30px 20px;
  border-radius: 50%;
  transition: all 100ms ease-in-out;
}
footer .socials-links a:hover {
  color: white;
  background: var(--accent-color);
}
@media (max-width: 992px) {
  .project-description {
    text-align: center;
    padding: 20px;
  }
  h1 {
    font-size: 63px;
  }
  .hero p {
    font-size: 28px;
  }
  .hero h2 {
    font-size: 20px;
  }
  .hero button {
    font-size: 14px;
  }
  .homepage-projects h2 {
    font-size: 46px;
  }
  .hero {
    padding: 80px 20px;
    padding-top: 45px !important;
  }
  .content {
    text-align: center;
    padding: 0 15px;
  }
  .content img {
    margin-top: 55px;
  }

  nav a {
    font-size: 13px;
  }
  h4 {
    font-size: 30px;
  }
  .work-inquiry .button {
    padding: 15px 25px;
    font-size: 15px;
  }
}
