@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

html{
    font-size: 10px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100dvh;
}

body{
    height: fit-content;
    min-height: 100%;
    background-color: var(--alabaster);
    /* background-image: url(./images/leaf4i.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;  may cause problems for safari
    background-position: center;
    background-size: cover; */
}

:root{
    --red: #d8505c;
    --darkred: #ba3b46;
    --rosewood: #510d0a;
    --claret: #840032;
    --pinkrose: #cc004e;
	--yellow: #ed9b40;
    --darkyellow: #da8525;
    --goldorange: #d67200;
    --tomato: #F95738;
    --persimmon: #E55812;
    --persianorange: #dc965a;
    --yellowgreen: #95C623;
    --green: #5dc0a1;
    --darkgreen: #182619;
    --cadmiumgreen: #006b3c;
    --sage: #bbb891;
	--lightyellow: #f7e5d2;
	--black: #070707;
	--black-2: #3f3c3c;
	--black-3: #252321;
	--white: #ffffff;
    --brown: #442110;
    --gold: #b69167;
    --goldgreen: #585824;
    --grey: #e2e1e1;
    --greywhite: #ffffffe8;
    --alabaster: #EFE7DA;
    --greyblack: #ccc7a9; /* change name */
    --tblack: #000000b0;
    --tbrown: #1b0e05d2;
    --twhite: #ffffffc4;
    --talabaster:rgba(239, 231, 218, 0.74);
    --lightgrey: #7c7c7c;
    --offwhite: #f2f0ef;
    --brownborder: rgb(78, 50, 36);
    --goldborder: #f1c99c;
    --brownlight: #776459;
    --whitelight: #b8b0a4;


    --red-highlight: #F73030;
    --blue-highlight: #3094f7;
    --reen-highlight: #60E6C0;

    --font-size: 16px;
}

section{
    padding: 60px 0;
}
@media only screen and (min-width: 768px){
    section{
        padding: 80px 0;
    }
}

.container{
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

svg{
    stroke: var(--brown);
}

h1, h2, h3, h4, h5, p, a, legend, label, input, .input, textarea, .btn, select{   /*check and fix (remove h4/5) button fonts*/
    font-style: normal;
    font-optical-sizing: auto;
    color: var(--brown);
}

label, input, .input, textarea, select{   /*check and fix (remove h4/5) button fonts*/
    font-style: normal;
    font-optical-sizing: auto;
    color: var(--black);
}

h1, h2{
    font-family: "Domine", serif;
    font-weight: 700;
}

h3, h4, h5, p, a, legend, label, input, textarea, .btn, select, option{
    /* font-family: "Barlow", sans-serif; */
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

h3, h4, h5, legend, .btn{
    font-weight: 600;
}

h1, h2, h5, p, a, input, .input, label, textarea, select, option, .btn{   /* check this for button font */
    font-size: 1.6rem;
}
label{
    font-size: 1.4rem;    /*changed for stripe, change later*/
}
h3{
    font-size: 2.5rem;
}
h4, legend{
    font-size: 2rem;
}

p, textarea{
    line-height: 1.4em;
}

a{
    display: inline-block;
    text-decoration: none;
}

fieldset{
    display: grid;
    gap: 1rem;
    border: 0;
}