:root {
    --main-white: #FFFFFF;
    --second-white: #E6E7E8;
    --main-blue: #A7C4D2;
    --main-background: #373435;
    --main-yellow: #ffd240;
    --main-gray: #B3B3B3;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

main {
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: row;
}

/* container aligns */
.container.column {
    flex-direction: column;
}

.container.center {
    align-items: center;
    justify-content: center;
}

.container.space-b {
    justify-content: space-between;
}

.container.start {
    align-items: flex-start;
}

/* container gap */
.container.g50 {
    gap: 50px;
}

.container.g45 {
    gap: 45px;
}

.container.g40 {
    gap: 40px;
}

.container.g10 {
    gap: 10px;
}

.title {
    color: var(--main-white);
    font-family: 'Fredoka', sans-serif;
    font-size: 90px;
    text-align: center;
}

.title.section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title.section h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 70px;
    color: var(--main-background);
}

.title-section-line {
    width: 100px;
    height: 16px;
    background-color: var(--main-blue);
    position: relative;
    bottom: 10px;
}

.description {
    max-width: 840px;
    font-family: 'Lato', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: var(--main-background);
}

.description.white {
    color: var(--main-white);
}

@media (max-width: 980px) {
    .title {
        font-size: 45px;
    }

    .title.section h1 {
        font-size: 35px;
    }

    .title-section-line {
        bottom: 0;
    }

    .description {
        font-size: 20px;
    }
}