:root {
  --secondary-color: #f9f7fe;
  --secondary-font: "Playfair Display", serif;
  --main-font: "Poppins", sans-serif;
}
.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 160px 20px;
}

h1 {
  font-family: var(--main-font);
  font-size: 96px;
  font-weight: bold;
  line-height: 2;
}
.about-content h1 {
  font-size: 64px;
  line-height: 1.2;
}
.about-content {
  margin: 30px;
}
.about-section {
  padding: 160px 20px;
}

h2 {
  font-family: var(--secondary-font);
  font-size: 32px;
}
.btn-branding {
  background: rgb(49, 145, 241);
  color: white;
  border-radius: 4px;
  padding: 14px 19px;
  font-size: 20px;
}
p {
  font-size: 20px;
}
h3 {
  font-size: 64px;
}
.btn-branding-secondary {
  border: 1px solid rgb(49, 145, 241);
  border-radius: 4px;
  font-size: 18px;
  padding: 15px 30px;
}
.text {
  margin-left: 20px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  h1 {
    font-size: 60px;
  }
  h3 {
    font-size: 40px;
  }
  .about-content h1 {
    font-size: 44px;
  }
  .about-content {
    text-align: center;
  }
}

.work-section h1 {
  font-size: 64px;
  line-height: 80px;

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

.work-section {
  padding: 160px 20px;
}
.work-section h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.work-section p {
  font-size: 14px;
}
.logo {
  max-height: 90px;
}
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
nav ul {
  padding: 0;
  margin: 0;
  line-height: 50px;
}
li {
  list-style: none;
  display: inline;
  margin-left: 10px;
}
nav li a {
  text-decoration: none;
  color: black;
}

nav a:hover {
  color: purple;
  transform: all 150ms ease-in-out;
}

nav a.active {
  color: purple;
}

footer {
  text-align: center;
}
footer a {
  text-decoration: none;
}
footer .mail-link a {
  color: black;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--secondary-font);
}

.social-links a {
  color: purple;
  margin: 10px;
  font-size: 30px;
  background: rgb(221, 240, 242);
  padding: 20px;
  border-radius: 40px;
  transition: all 300ms ease-in-out;
}
.social-links a:hover {
  color: white;
  background: purple;
}

.contact-box {
  background: var(--secondary-color);
  padding: 40px 50px;
}
h4 {
  font-family: var(--main-font);
  font-size: 28px;
}
