html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    margin: 0;
    height: 100%;
    font-family: Lora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

:root {
    --padding-xs: 8px;
    --padding-sm: 16px;
    --padding-md: 24px;
    --padding-lg: 48px;
    --padding-xl: 192px;
    --margin-xs: 8px;
    --margin-sm: 16px;
    --margin-md: 24px;
    --margin-lg: 48px;
    --margin-xl: 192px;
    --color-black-600: #5F5F5F;
    --color-black-700: #3C3C3C;
    --color-black-800: #212121;
    --color-black-300: #EAEAEA;
    --color-black-200: #F5F5F5;
    --color-purple: #B0A5C2;
    --color-yellow: #F2EA16;
    --color-white: #fff;
    --grid-template-columns: repeat(12, 1fr);
    --grid-gap: 32px;
}

.content,
.content-scrolled {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

h1 {
    font-family: Lora;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
}

h2 {
    font-family: Lora;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
}

h3 {
    font-family: Lora;
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    text-align: left;
}

.topic-title {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    font-family: Lora;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

a {
    color: #000;
}

a:hover {
    color: var(--color-black-600);
}

img {
    width: auto;
    text-align: center;
    height: 100%;
    object-fit: cover;
}

.text-abstract {
    font-family: Lora;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    max-width: 662px;
}

.text-paragraph-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0;
    margin: 24px 0;
}

.text-paragraph {
    max-width: 662px;
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .text-paragraph {
        padding: 0 24px;
    }
    .text-abstract {
        padding: 0 24px;
    }
}