:root {
    --main-color: #201DA7;
    --main-hover-color: #0F0D75;
    --text-color: #676767;
    --body-bacground: #fff;
}

* {
    word-wrap: break-word;
}

html.active {
    overflow-y: hidden;
}

body {
    font-family: Rubik-Regular, serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    color: var(--text-color);
    background-color: var(--body-bacground);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.content {
    position: relative;
}

a {
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-hover-color);
}

body::-webkit-scrollbar-track {
    background-color: #edffff;
    box-shadow: inset 0 0 5px #d6fffe;
    cursor: pointer;
}

body::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: var(--main-color);
    height: 100px;
    cursor: pointer;
}

body::-webkit-scrollbar {
    width: 10px;
    cursor: pointer;
}

.section {
    padding: 30px 0;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header-title {
    color: #292929;
    font-family: Rubik-Medium, serif;
    font-weight: 500;
    margin: 0;
}

.content-text {
    color: #292929;
    font-size: 16px;
    margin-bottom: 0;
}
