:root {
  --default-font-family: "Playfair Display", serif;
  --heading-font-family: "Playfair Display", serif;
  --branding-color: #a0e4f7;
  --secondary-color: #d2ecf3;
}

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

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

h1 {
  font-size: 78px;
  line-height: 1.5;
}

h2 {
  font-size: 50px;
}

h4 {
  font-size: 40px;
}

a {
  color: #2bc8f3b4;
  text-align: center;
}

a:hover {
  color: var(--branding-color);
}

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

nav {
  padding: 20px 0;
}

nav a {
  text-decoration: none;
  color: #07c1f5d7;
  transition: all 100ms ease-in-out;
}

nav a:hover,
nav li.active a {
  color: var(--branding-color);
  transition: all 100ms ease-in-out;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 30px;
  font-size: 20px;
}

nav ul {
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

footer {
  margin: 60px 0;
}

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

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

footer a {
  color: #0fbae9;
  font-size: 16px;
}

footer a:hover {
  color: var(--branding-color);
  transition: all 100ms ease-in-out;
}

.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 60px 20px;
}

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #272142;
}

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

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

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

.content h2 {
  font-family: var(--default-font-family);
  text-align: center;
}

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

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

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

.content {
  margin: 30px;
}

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

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

.nav-bar {
  text-align: right;
}

.project-desciption {
  padding: 120px 60px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
    line-height: 56px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 30px;
  }

  .btn {
    font-size: 18px;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

  footer {
    text-align: center;
  }

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