body {
    font-family: 'Poppins', sans-serif;
    background-color: mistyrose;
    color: white; 
    text-align: center;

}

h1 { 
    text-align: center; 
    color: lightcoral;
    font-size: 60px;
    }
h2 { 
    color: olive;
}
h3 { 
    color: antiquewhite
}

.custom-shape-divider-top-1713184231 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 10;
}

.custom-shape-divider-top-1713184231 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top-1713184231 .shape-fill {
    fill: #FFFFFF;
}

section { 
    position: relative;
    display; flex;
    flex-direction: column; 
    align-items: center;
    min-height: 200px;
    padding: 40px 20vw;
    border-width: 0px;
    }

.peach {
    background-color: peachpuff; 
}
.green { 
    background-color: seagreen;
}
.pink { 
    background-color: pink; 
}
.lavender {
    background-color: lightpink; 
}

.curve {
    position: absolute; 
    height: 225px; 
    width: 100%;
    bottom: 0; 
} 

.curve: :before { 
    content: '';
    display: block;
    position: absolute; 
    border-radius: 100% 50%; 
    width: 55%; 
    height: 100%; 
    background-color: blue;
    transform: translate(85%, 60%);
}
.curve: :after { 
    content: '';
    display: block;
    position: absolute; 
    border-radius: 100% 50%; 
    width: 55%; 
    height: 100%;
    background-color: lightblue;
    transform: translate(-4%, 40%); 
    z-index: -1; 
}