@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

html{
    scroll-behavior: smooth;
}

:root{
    --red:#81171B;
    --black:#070707;
    --white:#F3EAF4;
    --grey:#857F74;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

body {
    background: var(--white);
}

/* BASICS */


/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */

header{
    padding: 20px 0 20px 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#logo{width: 80px;}

header>nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: .5;
}

/* MENU */


/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */


#whoami{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#whoami>img{
    width: 50%;
    max-width: 400px;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

#whotxt{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 40%;
    padding: 40px;

}
/* WHOAMI */


/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */

#exp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    }

#exp>figure>img{
    width: 200px;
}
    
.div1 { grid-area: 1 / 1 / 3 / 2; }
.div2 { grid-area: 1 / 2 / 3 / 3; }
.div3 { grid-area: 1 / 3 / 3 / 4; }

/* EXPERTISE */


/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* FOOTER */


/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */