:root {
  --branding-color:#be9b8a;
  --secondary-color: #f1e4de;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family:"Poppins", sans-serif; 
}

body {
  font-family: var(--default-font-family);
}

h1,h2,h3 {
  font-family:var(--heading-font-family);
  font-weight: bold;
}

h1 {
  font-size: 96px;
  line-height: 1.5;
  color: black;
}

h2 {
  font-size: 64px;
  color: black;
}

h3 {
  font-size: 40px;
}

p {
  font-size: 16px;
  line-height:30px;
  font-weight: normal;
  color: black;
}

nav {
  padding: 10px 0;
}

nav ul {
padding: 0;
margin: auto;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 40px;
  margin-left: 15px;
  cursor: pointer;
}

nav a {
  color:#554941;
  text-decoration: none;  
  cursor: pointer;
}

nav a:hover,
nav li.active a {
  color: #b9b0ab;
  text-decoration: none;
  transition: all 100ms ease-in-out;
}
hr {
  border: 2px solid var(--branding-color);
  border-radius: 10px;
}

footer {
  margin: 40px 0;
}

footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 60px;
  border-radius: 10px;
}

footer .contact-box p {
  margin: 0;
}

footer .email-link {
  text-decoration: none;
  color: #554941;
  font-size: 16px;
  cursor: pointer;
}

footer .email-link:hover {
  color: var(--branding-color);
}

footer .social-links a {
  font-size: 14px;
  color: #554941;
  background-color: var(--branding-color);
  border-radius: 50%;
  margin: 0 10px;
  padding: 8px 12px;
  transition: all 150ms ease-in-out;
  cursor: pointer;
 
}
footer .social-links a:hover {
  color: var(--branding-color);
  background-color: #554941;
}

.hero {
  background-color:var(--secondary-color);
  text-align: center;
  padding: 80px 20px; 
}

.hero p {
 font-size: 36px;
 font-weight: bold;
 margin: 0;
 padding: 0;
 color:var(--branding-color)
}

.hero h2 {
  font-family: var(--default-font-family);
  font-weight: normal; 
  font-size: 24px;
  line-height: 1.5;
}

.hero-contact {
  background-color:var(--secondary-color);
  text-align: center;
}

.content-container {
  padding: 60px 20px;
}

.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;
  font-family: var(--default-font-family);
}

.content p {
  font-size: 14px;
}

.content {
  margin: 30px;
}

.btn-branding {
  background: var(--branding-color);
  color: white;
  border-radius: 4px;
  font-size:18px;
  line-height: 27px;
  padding: 15px 30px;
  margin-top: 10px;
  cursor: pointer;
}
.btn-branding:hover {
 color: #be9b8a;
  background-color: #554941;
  transition: all 150ms ease-in-out;
}

.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; 
  margin: 0;
  cursor: pointer;
}

.btn-branding-outline:hover {
  color: #be9b8a;
  background-color: #554941;
  transition: all 150ms ease-in-out;
}



.tacoProject {
  margin-bottom:60px;
  margin-left: 228px;
}

.weatherProject {
  margin-bottom: 60px;
  margin-left: 228px;
}

.reactProject { 
  margin-bottom: 60px;
  margin-left: 228px;

}


.project-description {
  padding: 60px 20px;
}

.logo {
height: 40px;
}

.me {
  border: 4px solid #be9b8a;
  border-radius: 4px;
  padding: 5px;
  width: 400px;
  height: 520px;
}


@media (max-width: 900px) {
  h1 {
    font-size: 40px; 
    line-height: 56px; 
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 26px;
  }

  .me {
  display: block;
  margin-left: auto;
  margin-right: auto;
  }
  .content {
    text-align: center;
    padding: 0;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }
}