.container {
    margin: 0;
    color: var(--textColor);
}


.container section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    margin: 0px 10px 0px 10px;
    padding: 100px 20vw;

}

.firstSection {
    border-radius: 10px 10px 0px 0px;
}

.lastSection {
    border-radius: 0px 0px 10px 10px;
}


.section1 {
    background: var(--elementColor);
}


.section2 {
    background: var(--elementColor2);
}

.section3 {
    background: var(--elementColor3);
}

.dark {
    background: #694e5910;
}


.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 219px;
}

.wave2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave2 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 201px;
}

.curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.triangle svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 103px;
}

.waveColor3 .shape-fill {
    fill: var(--elementColor3);
}

.waveColor2 .shape-fill {
    fill: var(--elementColor2);
}

.waveColor1 .shape-fill {
    fill: var(--elementColor);
}

.link {
    color: var(--accentColor);
    font-weight: bold;
}

.exampeImage {
    max-width: 250px;
    border-radius: 10px;
}