*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        system-ui,
        sans-serif;

    line-height:1.6;

    color:#222;

    background:#faf8f4;

}

a{

    color:inherit;

    text-decoration:none;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}