:root {
    --primary-color: #6c63ff;
    --secondary-color: #f9f7fe;
    --text-color: #272142;
    --font-family: "Public Sans", sans-serif;
}

body {
    font-family: var(--font-family);
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: bold;
}

h1 {
    font-size: 96px;
    line-height: 1.5;
}

h2 {
    font-size: 64px;
}


h3 {
    font-size: 48px;
}

p {
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
}

.hero {
    background: var(--secondary-color);
    text-align: center;
    padding: 80px 20px;

}

.hero p {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: var(--text-color);
}

.hero h2 {
    font-family: var(--font-family);
    font-weight: normal;
    line-height: 1.5;
    font-size: 24px;
}

.content-container {
    padding: 60px 20px;
}

.content h1 {
    font-size: 64px;
    line-height: 80px;
 }

 .content h2 {
    font-size: 18px;
    color: var(--text-color);
 }

 .content h3 {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-color);
 }

 .content p {
    font-size: 14px;
}

.content{
    margin: 30px;
 }

.btn-branding {
    background: var(--primary-color);
    border-radius: 4px;
    color: white;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
}

.btn-branding-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);     
    border-radius: 4px;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;

}

.project-desciption {
  padding: 120px 60px;
}

nav a {
    font-size: 14px;
}

nav {
    padding: 20px 0;

}
nav ul {
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    list-style: none;
    line-height: 42px;
    margin: 15px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 100ms ease-in-out;
}

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

footer {
    margin: 60px 0;
}

footer .contact-box {
    background:fixed var(--secondary-color);
    padding: 30px 120px;
    border-radius: 10px;
}

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

footer .email-link {
    text-decoration: none;
    color: var(--text-color);   
    font-size: 24px;
    text-align: center;
}

footer .email-link:hover {
    color: var(--primary-color);
}

footer .social-links {
    margin: 0 20px;
    color: var(--text-color);
    background: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 100ms ease-in-out;
}

footer .social -links:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
    line-height: 56px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 26px;
  }

  
  .about-section {
    text-align: center;
    padding: 0; 
  }

  .project-desciption {
    padding: 0;
    text-align: center;
  }

  footer .contact-box {
    padding: 30px ;
  }
}

