:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    padding: 40px 32px;
}

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
}

h2 {
    width: 100%;
    text-align: center;
}

.flex-row-start {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.section {
    width: 100%;
    padding: 120px 0;
}


h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.59;
    margin-bottom: 32px;
}

h2 {
    font-size: 22px;
    line-height: 1.59;
    margin-bottom: 16px;
    margin-top: 32px;
    text-align: left;
}

h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.32;
}

p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-weight: 400;
}

strong {
    font-weight: 800;
    padding: 0 2px;
    border-radius: 3px;
}

a {
    color: #FFFFFF80;
    font-size: 14px;
}

ul {
    margin-top: 8px;
    margin-bottom: 8px;
}