:root{ 
 --my-gradient:linear-gradient(179.7deg, rgb(248, 126, 126) -0.5%, rgb(251, 206, 143) 35.3%, rgb(184, 252, 233) 67.2%, rgb(118, 162, 229) 92.3%); 
 --btn-color:#e2a5af;
 --main-font: "Audiowide", sans-serif;
 --secondary-font: "Inter", sans-serif;
 
}
body{
    background: #f3ede2;
}
p ,h2{
    font-family: var(--main-font);
    font-weight: 400;
    font-style: normal;
}
h2{
    font-size: 54px;
}
p{
    font-size: 18px;
    line-height: 30px;
}
nav{
    padding: 20px 0;
}
nav ul {
    margin: 0;
    padding: 0;
}
nav li {
    display: inline;
    list-style: none;
    margin-left: 10px;
    line-height: 42px;
}
nav a {
     text-decoration: none;
     color: #272142;
      transition: all 100ms ease-in-out;
}
nav li.active  a {
    color: var(--btn-color);
}
nav a:hover{
    color: var(--btn-color);
}
.logo{
    max-height: 40px;
}

.fleur-de-leah-regular {
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 96px;
}
.hero{
    background: var(--my-gradient);
    text-align: center;
    padding: 120px 20px;
}

.hero p{
    font-size: 34px;
    font-weight: normal;
    margin:0;
    padding: 20px 20px;

}
.hero h2{
    font-weight: normal;
    line-height: 2;
     font-size: 26px;
}
.btn-design{
    background: var(--btn-color);
    border-radius: 5px;
    font-family: var(--secondary-font);
    font-size: 18px;
    line-height: 27px;
    padding: 12px 18px;
}
.project-paragraph{
    font-size: 20px;
}
.project-text{
    padding: 120px 60px;
}
.about-section-content{
     padding: 80px 60px;
}
.about-header{
    text-align: center;
}
.about-me{
    font-size: 34px;
}
.jades-image {
    max-width: 400px;
    
}
.work-page-title{
    text-align: center;
    font-size: 46px;
    padding: 20px 20px;
}
.link-style {
    text-decoration: none;
    color:rgb(118, 162, 229);
}
footer{
    margin: 60px;
}
footer .email-link {
    text-decoration: none;
    color: black;
    font-size: 24px;
}
footer .email-link:hover{
    color: var(--btn-color);
}
footer .social-links a{
    margin: 0 20px;
    color: var(--btn-color);
    background: var(--my-gradient);
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
}
footer .social-links a:hover{
    color: white;
    background: var(--btn-color);
}
@media(max-width: 900px){
    h1{
        font-size: 56px;
        line-height: 96px;
    }
    h2{
        font-size: 44px;
    }
    .hero{
        padding: 80px 20px;
    }
    .project-text{
        padding: 0;
        text-align: center;
    }
    .about-header h1{
        font-size: 76px;
    }
}
