:root {
  --branding-color: rgb(45, 174, 174);
  --secondary-color: #f9f7fe;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", serif;
}

body {
  font-family: var(--default-font-family);
}

.bodyimage {
  background-image: url("/images/pfbg2.jpg");
  background-size: cover;
  background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: var(--heading-font-family);
  font-weight: bold;
}
h1 {
  font-size: 70px;
}

h2 {
  font-size: 58px;
}

h3 {
  font-size: 48px;
}

p {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero p {
  font-size: 32px;
  font-family: var(--heading-font-family);
  font-weight: bold;
  margin: 0;
  color: rgb(111, 118, 120);
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-weight: normal;
  line-height: 1.5;
  font-size: 24px;
  color: rgb(102, 101, 101);
}

.hero h1 {
  color: rgb(240, 248, 252);
}

.hero .btn-branding {
  background: rgb(230, 247, 252);
  color: rgb(102, 101, 101);
}
.hero .btn-branding:hover {
  color: rgb(219, 242, 254);
  background: rgb(189, 189, 189);
}

.btn-branding {
  background: var(--branding-color);
  border-radius: 4px;
  color: white;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}

footer .btn-branding:hover {
  color: var(--branding-color);
  background: white;
}

.btn-branding-outline {
  color: var(--branding-color);
  border: 1px solid var(--branding-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}

.project-description {
  padding: 90px 30px;
}

.logo {
  max-height: 56px;
}

nav {
  padding: 20px 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: rgb(111, 118, 120);
  transition: all 100ms ease-in-out;
}

nav li.active a,
nav a:hover {
  color: rgb(245, 250, 253);
}

.heading {
  font-size: 24px;
}

.projects {
  font-size: 52px;
}

.btn-branding-outline:hover {
  color: white;
  background: var(--branding-color);
}

footer {
  margin: 60px 0;
}

footer p {
  color: rgb(111, 118, 120);
}

footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 120px;
  border-radius: 10px;
}

footer .contact-box p {
  margin: 0;
}

footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;
}

footer .email-link:hover {
  color: var(--branding-color);
}

footer .social-links a {
  margin: 0 20px;
  background: rgb(230, 247, 252);
  color: rgb(102, 101, 101);

  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 100ms ease-in-out;
}

footer .social-links a:hover {
  color: rgb(219, 242, 254);
  background: rgb(189, 189, 189);
}

footer a {
  color: rgb(240, 250, 255);
  text-decoration: none;
}

footer a:hover {
  color: rgb(219, 242, 254);
  background: rgb(189, 189, 189);
}

@media (max-width: 960px) {
  h1 {
    font-size: 50px;
    line-height: 2;
  }
  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 26px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }

  footer .contact-box {
    padding: 30px;
  }

  .content {
    text-align: center;
    padding: 0 !important;
  }

  .about-img {
    margin: 15px;
  }
}

.content-container {
  padding: 60px 20px;
}

.content h1 {
  font-size: 64px;
  line-height: 80px;
}

.content h2 {
  font-size: 18px;
  font-family: var(--default-font-family);
}

.content h3 {
  font-size: 24px;
  line-height: 1.5;

  font-family: var(--default-font-family);
}

.content p {
  font-size: 14px;
}

.content {
  margin: 30px;
}

footer .contact-box {
  background: rgb(240, 245, 245);
}
