:root {
  --branding-color: #e0d8c5;
  --secondary-color: #fff7e2;
  --heading-font-family: "Poppins", sans-serif;
  --default-font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #968475;
  font-family: var(--default-font-family);
  font-weight: bold;
}
h1 {
  font-size: 96px;
  line-height: 1;
}

h2 {
  font-size: 60px;
  opacity: 0.5;
  text-align: center;
  padding: 15px 0px;
}

p {
  font-size: 25px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
}

.hero {
  background-color: var(--branding-color);
  text-align: center;
  padding: 160px 0;
}

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #968475;
  line-height: 2;
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-weight: normal;
  font-style: normal;
  line-height: 2;
}

.btn-branding {
  color: #f1eace;
  background-color: #78566f;
  border-radius: 10px;
  font-size: 18px;
  padding: 20px 30px;
  line-height: 20px;
}

.btn-branding-outline {
  color: #968475;
  border: 5px solid #78566f;
  border-radius: 10px;
  font-size: 18px;
  padding: 15px 20px;
  line-height: 30px;
}

@media (max-width: 960px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 60px;
  }
  .project-description {
    padding: 0;
    text-align: center;
    color: #968475;
  }
}

.content-container h1 {
  font-size: 64px;
  font-weight: bold;
  margin: 0;
  color: #968475;
  text-align: center;
  line-height: 2;
}
.content-container h2 {
  font-size: 54px;
  font-weight: bold;
  margin: 0;
  color: #968475;
  line-height: 1.5;
}

.content-container {
  padding: 160px 20px;
  text-align: center;
}

.content {
  margin: 30px;
}
img {
  border-radius: 10px;
}

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

nav ul {
  padding: 0;
}

nav {
  padding: 20px 0;
}

nav a {
  text-decoration: none;
  color: #968475;
  transition: all 200ms ease-in-out;
}

nav a:hover,
nav li:active a {
  color: var(--branding-color);
}

footer {
  padding: 60px;
}
