@font-face {
    font-family: 'VentiCF DemiBold';
    font-weight: 600;
    src: url('../fonts/VentiCF-DemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'VentiCF Medium';
    font-weight: 500;
    src: url('../fonts/VentiCF-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Merriweather Bold';
    font-weight: 700;
    src: url('../fonts/Merriweather-Bold.ttf') format('truetype'),
         url('../fonts/Merriweather-Bold--stage2.woff2') format('woff2'),
         url('../fonts/Merriweather-Bold--stage2.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather Light';
    font-weight: 300;
    src: url('../fonts//Merriweather-Light.ttf') format('truetype'),
         url('../fonts/Merriweather-Light--stage2.woff2') format('woff2'),
         url('../fonts/Merriweather-Light--stage2.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather Regular';
    font-weight: 400;
    src: url('../fonts/Merriweather-Regular--stage2.woff2') format('woff2'),
         url('../fonts/Merriweather-Regular--stage2.woff') format('woff');
}

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

body {
    overscroll-behavior: none;
    background-color: var(--white-transparency-900);
    color: var(--neutral-800);
}

main {
    overflow: hidden;
}

.aside-title {
    font: 17px 'VentiCF DemiBold', sans-serif;
    line-height: 150%;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.h1 {
    font-family: 'VentiCF Medium', sans-serif;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.03em;
}

.h3 {
    font-family:'VentiCF DemiBold', sans-serif;
    line-height: 150%;
    letter-spacing: 0.02em;
}

.h4 {
    font-family: 'VentiCF DemiBold', sans-serif;
    line-height: 150%;
    letter-spacing: 0.02em;
}

.p {
    font-family: 'Merriweather Light', serif;
    line-height: 180%;
    letter-spacing: 0.03em;
}

.caps-header {
    font-size: 17px;
    color: var(--neutral-800);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

b {
    font-family: 'Merriweather Bold', serif;
}