@import 'utilities.css';

:root{
    --primary:#FFFFFF;
    --secondary:#FFDB71;
    --ternary:#000000;
    --design:#D6D7DB;
}

body{
    font-family: 'Poppins',sans-serif;
}

html{
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smotthing:antialiased;
}
header{
    background:var(--secondary);
    height: 576px;
}

.container{
    max-width:1152px;
    padding:0 15px;
    margin:0 auto;
}

header nav .links a{
    color: #000000;
    text-decoration: none;
    margin-right: 2rem;
    text-transform: uppercase;
    transition: all .3s ease ;
}

header nav .links a:hover{
    color: var(--primary);
}

header nav{
    padding:2rem 0;
}

header nav .ok{
    margin-right: 3rem;
}

.hero .left img{
    width: 300px;
    height: 375px;
    margin-right: 5rem;
}

.hero .right h2{
    font-weight: 1000;
    font-size: 2rem;
}

.hero .right h1{
    font-size: 4rem;
    font-weight: 100;
    margin-top: 0.5rem ;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero .right h1 span{
    color: #3baedb;
}

.hero .right p{
    line-height: 1.9;
}

section{
    padding: 6rem 0;
}

section.about{
    background: var(--design);
}

section.about h1{
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 200;
}

section.about h3{
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}
section.about h3 span{
    color:#3baedb;
}

section.about p{
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 1.8;
}

section.about .social{
    display: flex;
    margin-top: 3rem;
}

section.about .social a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

section.about .social a:hover{
    transform: scale(1.3);
    cursor: pointer;
}

section.works{
    background: var(--secondary);
}

.section-heading{
    color: var(--ternary);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.section-heading + p{
    font-family: 'Lato', sans-serif;
    margin-bottom: 6rem;
    text-align: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.section-heading span{
    color:#3baedb;
    ;
}

section.works .card-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 8rem;
    grid-row-gap: 2rem;
}

section.works .card-wrapper .card{
    text-align: center;
}

section.works .card-wrapper .card h2{
    font-weight: 400 ;
}
