@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);


/* *,
*::before,
*::after {
    outline: #ffffff;
    outline-style: dotted;
    outline-width: 2px;

} */

body {
    position: relative;
    font-family: 'Roboto';
    margin: 0;
    /* background-color: #13191c; */
    background-color: #e0a6a6;
    color: #ffffff;
    overflow-x: hidden;
}

h1 {
    font-size: 60px;
    z-index: 3;
}

p {
    width: 60vw;
    font-size: 1.2rem;
    z-index: 10;
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    padding-top: 100px;
    text-align: center;
    overflow-wrap: break-word;
    justify-content: center;

}



/* Curved bg with plain CSS */


.blue {
    background: #a6c8e0;
    z-index: 2;

    /* background-clip: content-box */

}

.red {
    background: #e0a6a6;
}


.curve {
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
    text-align: center;
    color: blueviolet;

}

.curve::before {
    content: '.curve::before';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    transform: translate(82%, 65%);
    background-color: #e0a6a6;

}

.curve::after {
    content: '.curve::after';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    background-color: #a6c8e0;
    transform: translate(-3%, 28%);

}

/* Bubble bg with plain CSS */

.dark-blue {
    background: #0b4562;
    z-index: -1;

}


.bubble::after {
    content: '.bubble::after';
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0b4562;
    height: 85%;
}

/* css corners with haikei.app */

.corners {
    background-color: #0B4562;
    overflow-y: visible;
}

.corner1 {
    position: absolute;
    left: 0%;
    max-width: 100%;
    overflow: visible;

}

.corner1_path {
    position: relative;
    z-index: 2;
}

.corner2 {
    position: absolute;
    right: 0%;
    bottom: auto;
    max-width: 100%;
    overflow: visible;

}

.corner2_path {
    position: relative;
    z-index: 2;
}

/*svg waves from https://www.shapedivider.app/ */


/* pink */

.pink {
    background: #e0a6c8;
}

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

.pink-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 160x;
}

.pink-wave-top .shape-fill {
    fill: #0B4562;
}


.pink-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.pink-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 113px;
}

.pink-wave-bottom .shape-fill {
    fill: #F2C8AF;
}


/* svg background from haikei */

/* peach */


.peach {
    background: #f2c8af;
    padding: 0 0 100px 0;
    aspect-ratio: 900/400;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('peachbg.svg');

}

/* animated svg morph */

.red-blob {
    background: #e0a6a6;
    padding: 0%;
    height: 650px;
    overflow-x: hidden;

}


.spacer-morph-flip {
    aspect-ratio: 900/200;
    height: 35vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('svgmorphbg.svg');
    position: absolute;
    transform: rotate(180deg);
    bottom: 0px;
    z-index: 1;

}

.spacer-morph {
    aspect-ratio: 900/200;
    height: 35vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('svgmorphbg.svg');
    position: absolute;
    top: 0px;
    z-index: 2;

}

#blob2 {
    visibility: hidden;

}

#blob3 {
    visibility: hidden;
}

#blob-motion {
    position: absolute;
    /* width: 100%; */
    z-index: 2;
    transform: scale(1.5);


}

.blob-content {
    z-index: 3;

}

