/*base for horizontal elements*/
.horizontal-elements-container {
    display: flex;
    flex-wrap: nowrap;

    flex-direction: row;
}

/*base for vertical elements*/
.column-elements-container {
    display: flex;
    flex-wrap: nowrap;

    flex-direction: column;
}

.single-flex-element {
    flex: none;
}

@font-face {
    font-family: Inter;
    src: url(../../../../fonts/Inter-Medium.ttf);
}

.big-text {
    font-family: Inter;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;

}

.simple-text {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;

}