:root {
  --branding-color: #f3e4ea;
  --secondary-color: #f0d1de;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", sans-serif;
}
body {
  font-family: var(--default-font-family);
}
.background-style {
  background-color: var(--secondary-color);
}
h1 {
  font-family: var(--heading-font-family);
  font-weight: bold;
  font-size: 96px;
  line-height: 1.5;
}
h2 {
  font-size: 64px;
}
h3 {
  font-family: var(--heading-font-family);
  font-size: 48px;
}
p {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}
.paragraph-float {
  text-align: left;
}
a {
  color: var(--secondary-color);
}
.contact-link {
  color: black;
}
.link-project {
  color: #272142;
}
.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 80px 0;
}
.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #272142;
}
.hero h2 {
  font-size: 24px;
  line-height: 1.5;
  font-family: var(--default-font-family);
  font-weight: normal;
}
.work-background {
  background-color: white;
}
.content-container {
  padding: 50px;
  text-align: center;
}
.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;
  margin: 20px 0;
  font-family: var(--default-font-family);
}
.content p {
  font-size: 14px;
}
.content {
  margin: 30px;
  text-align: center;
}
.img-about {
  width: 500px;
  padding: 0 80px;
  margin-bottom: 30px;
}

.btn-branding {
  background: var(--branding-color);
  border-radius: 4px;
  color: black;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
  font-weight: 500;
}
.btn-branding-outline {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}
.project-description {
  padding: 120px 60px;
}
.logo {
  margin-top: 0;
  max-width: 150px;
}
.small-logo {
  margin-top: 0;
  max-width: 40px;
}
.col-lg-6 {
  width: 100%;
}
nav {
  padding: 20px 0;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}
nav li.active a {
  color: var(--secondary-color);
}
nav a {
  text-decoration: none;
  color: #212529;
  transition: all 100ms ease-in-out;
}
nav a:hover {
  color: var(--branding-color);
}
footer {
  margin: 60px 0;
}
footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 24px;
  text-align: center;
}
footer .email-link:hover {
  color: var(--branding-color);
}
footer .social-links a {
  margin: 0 20px;
  color: white;
  background-color: var(--secondary-color);
  padding: 10px 14px;
  font-size: 28px;
  border-radius: 50%;
  transform: all 100ms ease-in-out;
}
footer .social-links a:hover {
  color: white;
  background: var(--branding-color);
}
footer .contact-box {
  background-color: var(--secondary-color);
  padding: 30px 120px;
  border-radius: 10px;
}
footer .contact-box p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 20px;
  }
  nav a {
    font-size: 16px;
  }
  h1 {
    font-size: 44px;
    line-height: 2;
  }
  h2 {
    font-size: 44px;
  }
  .project-description {
    padding: 0;
    text-align: center;
  }
  footer .contact-box {
    padding: 30px;
  }
  h3 {
    font-size: 28px;
  }
  img {
    margin-top: 100px;
  }
}
img {
  margin-top: 100px;
}
