:root {
  --branding-color: #908bee;
  --first-color: #250731;
  --secondary-color: #c0c093;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", sans-serif;
}
body {
  background: var(--default-font-family);
}
h1,
h2,
h3,
h4 {
  color: black;
  font-weight: bold;
  font-family: var(--heading-font-family);
}
h1 {
  font-size: 96px;
  line-height: 1.5;
  color: var(--first-color);
}
h2 {
  font-size: 64px;
}
h4 {
  font-size: 48px;
}
.hero {
  background: var(--secondary-color);
  text-align: center;
  padding: 160px 20px;
}

p {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}
.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #272142;
}
.hero h2 {
  font-family: var(--heading-font-family);
  font-weight: normal;
  font-size: 24px;
  line-height: 1.5;
}
.content-container {
  padding: 60px 80px;
}

.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;
  font-family: var(--default-font-family);
}
.content p {
  font-size: 14px;
}
.content {
  margin: 30px;
}
.btn-branding {
  background: var(--branding-color);
  border-radius: 6px;
  color: rgb(197, 228, 242);
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
}
.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-decription {
  padding: 120px 60px;
}
nav {
  padding: 20px 0;
}
.logo {
  max-height: 40px;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}
nav a {
  text-decoration: none;
  color: #272142;
  transition: all 100ms ease-in-out;
}
nav a:hover,
nav li.active a {
  color: var(--branding-color);
}
footer {
  margin: 0 60px;
}
footer .email-link {
  text-decoration: none;
  color: black;
  font-size: 25px;
  text-align: center;
}
footer .email-link:hover {
  color: var(--branding-color);
}
footer .contact-links a {
  margin: 0 20px;
  color: var(--branding-color);
  background-color: var(--secondary-color);
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 50%;
  transition: all 100ms ease-in-out;
}
footer .contact-links a:hover {
  color: white;
  background: var(--branding-color);
}
footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 120px;
  border-radius: 10px;
}

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

@media (max-width: 960px) {
  h1 {
    font-size: 28px;
    line-height: 2;
    text-align: center;
  }
  h2 {
    font-size: 44px;
  }
  h3 {
    font-size: 26px;
  }
  .content {
    text-align: center;
    padding: 0;
  }
  .project-decription {
    padding: 0;
    text-align: center;
  }
  .hero {
    padding: 80px 20px;
  }
  nav a {
    font-size: 14px;
  }
  footer .contact-box {
    padding: 30px;
  }
}
.emoji {
  font-size: 50px;
  display: inline-block;
  animation: shake 1.5s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-5px) rotate(-5deg);
  }
  75% {
    transform: translateX(5px) rotate(5deg);
  }
}
