@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
html, body{
    font-family: var(--eb-font-family);
}
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*, ::after, ::before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
h1,h2,h3,h4,h5,h6{
    font-weight: var(--eb-heading-font-weight);
    color: var(--eb-heading-color);
}
h1{
    font-size: 42px;
    line-height: 48px;
}
h2{
    font-size: 25px;
    line-height: 32px;
}
h3{
    font-size: 20px;
    line-height: 28px;
}
h4{
    font-size: 16px;
    line-height: 22px;
}
h5{
    font-size: 14px;
    line-height: 20px;
}
h6{
    font-size: 12px;
    line-height: 18px;
}
p{
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--eb-text-black);
}
img{
    max-width: 100%;
    height: auto;
}
textarea {
    overflow: auto;
    resize: vertical;
    display: block;
}

code {
    font-family: var(--eb-font-family);
}