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

:root {
    --primary-black: #000;
    --secondary-grey: #DADADA;
}

.container {
    width: min(90%, 1202px);
    margin: 0 auto;

}

body {
    color: var(--primary-black);
}



.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    margin-bottom: 70px;


}



.header__nav a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 1.375rem;
    letter-spacing: 0.66px;
}

.header__nav {
    font-family: 'Staatliches';
    font-weight: 400;
    display: flex;
    align-items: center;
}


.header__left {
    display: flex;
    gap: 59px;
    align-items: center;
}


.divider {
    margin: 10px;
}

.header__lang {
    font-family: 'Tourney';
    font-weight: 600;
    text-decoration: none;
    font-size: 1.375rem;
    color: var(--primary-black);


}

h2 {
    font-family: 'Francois One';
    font-weight: 400;
    line-height: 48px;
    font-size: 2.25rem;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    margin-bottom: 39px;
}

.chapter {
    font-family: 'Farro';
    font-weight: 300;
    letter-spacing: 0.7px;
    font-size: 1.125rem;
}

.title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

p {
    font-family: 'PT Sans';
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 48px;
    margin-bottom: 30px;

}

section {
    padding-bottom: 30px;

}

.underline {
    text-decoration: underline;

}

.italic {
    font-family: 'PT Sans';
    font-style: italic;
    font-weight: 400;
}

.bold {
    font-family: 'PT Sans';
    font-weight: 700;
    line-height: 48px;
}

.bg-grey {
    display: inline-block;
    background: var(--secondary-grey);

}

.bg-grey.text {
    margin-bottom: 9px;
}