
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&family=Fraunces:opsz,wght@9..144,700&family=Inter:wght@400;700&family=Kumbh+Sans:wght@400;700&family=Montserrat:wght@500;700&family=Outfit:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&family=Fraunces:opsz,wght@9..144,700&family=Inter:wght@400;700&family=Kumbh+Sans:wght@400;700&family=Lexend+Deca&family=Montserrat:wght@500;700&family=Outfit:wght@300;400;600;700&display=swap');

:root{
    --Very-dark-bluehsl-main-background: hsl(233, 47%, 7%);
    --Dark-desaturated-blue-card-background:  hsl(244, 38%, 16%);
    --Soft-violet-accent: hsl(277, 64%, 61%);

    --White-main-heading-stats: hsl(0, 0%, 100%);
    --Slightly-transparent-white-main-paragraph: hsla(0, 0%, 100%, 0.75);
    --Slightly-transparent-white-stat-headings: hsla(0, 0%, 100%, 0.6);
}
*{
     padding: 0;
     margin: 0;
     box-sizing: border-box;
}

body{
    Font-size: 15px;
    font-family: 'Inter', sans-serif;


}

main{
    background-color:  hsl(233, 47%, 7%);
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0 auto;



}

.card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    overflow: hidden;
    max-width: 900px;
    height: 375px;
    border-radius: 0.5rem;
}

.content{
    background-color: hsl(244, 38%, 16%);
    width: 50%;
    height: 100%;
    padding: 3rem;
}

.image{
    width: 50%;
    height: 100%;

}

img{
    display: block;
    max-width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(35%) sepia(200%) hue-rotate(-125deg) saturate(200%) contrast(1);
}

h1{
    color: hsl(0, 0%, 100%);
    font-family: 'Lexend Deca', sans-serif;
    padding-bottom: 2rem;
    font-weight: 700;
}

span{
    color: hsl(277, 64%, 61%);
}
h3{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    padding-bottom: 4px;
}

p{
    color:  hsla(0, 0%, 100%, 0.6);
    font-size: 15px;
    padding-bottom: 4rem;
}

.projects{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 6rem;
}

.projects p{
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 10px;
    font-family: 'Lexend Deca', sans-serif;
}

