body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background: black;
    overflow-x: hidden;
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    padding: 100px 20vw;
}

.blue {
    background-color: blue;
}

.red {
    background-color: red;
}

.black {
    background-color: black;
}

.orange {
    background-color: #F7770F;
}

.yellow {
    background-color: #f2ff00;
}

.green {
    background-color: #2fa11a;
}

.purple {
    background-color: #d51ecd;
}


.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: black;
    transform: translate(85%, 60%);
}

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

.bubble::after {
    content: '';
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: red;
    height: 85%;
}

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

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

.wave .shape-fill {
    fill: red;
}

.spacer {
    aspect-ratio: 960/230;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.layer1 {
    background-image: url('./layer1.svg');
}

.spacer2 {
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.layer2 {
    background-image: url('./layer2.svg');
}

.flip {
    transform: rotate(180deg);
}

.layer3 {
    background-image: url('./layer3.svg');

}

.layer4 {
    background-image: url('./layer4.svg');

}


.blob-motion {
    position: absolute;
    transform: translateY(-20%);
    z-index: 0;
}

.blob-content {
    z-index: 1;
}

.pg-motion {
    position: absolute;
    transform: translateY(-50%);
    transform: translateX(0%);
    z-index: 0;
}

.pg-content {
    z-index: 1;
}

/* code snippet tool  */
pre {
    position: relative;
    background: black;
    padding: 10px;
    font-size: 15px;
    word-wrap: break-word;
    white-space: pre-wrap;
    border: 1px solid #e6e7e9;
}

.copy-button {
    position: absolute;
    top: 2px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    background: gray;
    border-radius: 0.5em;
    padding: 2px 7px;
}

.copy-button:hover {
    color: #000;
}

.container {
    display: grid;
    grid-auto-flow: column;
    grid-template-areas: 
      "A B"
      "A C";
    grid-gap: 10px;
}

.item1 {
    grid-area: A;
}

.item2 {
    grid-area: B;
}

.item3 {
    grid-area: C;
}