/* ======================================================
   Architecture Website Framework
   Reset CSS
   Version 1.0
======================================================*/


/*==========================================
RESET
==========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


/*==========================================
HTML
==========================================*/

html{

    scroll-behavior:smooth;

}


/*==========================================
BODY
==========================================*/

body{

    font-family:var(--body-font);

    color:var(--text);

    background:var(--background);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/*==========================================
MEDIA
==========================================*/

img{

    display:block;

    width:100%;

    max-width:100%;

}

picture{

    display:block;

}


/*==========================================
LINKS
==========================================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}


/*==========================================
LISTS
==========================================*/

ul,
ol{

    list-style:none;

}


/*==========================================
BUTTONS
==========================================*/

button{

    font-family:inherit;

    border:none;

    background:none;

    cursor:pointer;

}


/*==========================================
FORM ELEMENTS
==========================================*/

input,
textarea,
select{

    font:inherit;

    outline:none;

}


/*==========================================
HEADINGS
==========================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:normal;

    line-height:1.1;

}


/*==========================================
PARAGRAPHS
==========================================*/

p{

    line-height:1.8;

}