body {
    font-family: Helvetica, sans-serif;
    font-size: 30px;
    background-image: linear-gradient(160deg, #ffffff 50%, #e0fcff 100%);
}

#main-con {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#logo-con {
    position: relative;
    width: 360px;
    margin-bottom: 20px;
}
#icon-perspective {
    position: absolute;
    left: -5%;
    top: 6%;
    perspective: 1300px;
    perspective-origin: 0 600%;
    z-index: 1;
}
#icon-anim {
    display: flex;
    /* width: 160px;
    height: 160px; */
    width: 115px;
    padding-bottom: 100%;
    position: relative;
    /* transform: rotateY(-45deg); */
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

#icon-anim > div {
    position: absolute;
    /* width: 100%; */
    height: 27%;
    /* background: red; */
    transform-style: preserve-3d;
    
}
#icon-anim > div > span {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: calc(100% - 0.5px);
    /* width: 42px; */
    width: 0;
    height: 100%;
    background-image: linear-gradient(145deg, #ccef38, #4dce95);
    transform: rotateY(90deg);
    transform-origin: 0 center;
    transform-style: preserve-3d;
}

#bar-1 {
    top: 0;
    /* width: 75%; */
    width: 0;
    background-image: linear-gradient(145deg, #87dc62, #10bfcc);
}

#bar-2 {
    top: 36.5%;
    /* width: 55%; */
    width: 0;
    background-image: linear-gradient(145deg, #5cd289, #1cc2c2);
}

#bar-3 {
    bottom: 0;
    /* width: 27%; */
    width: 0;
    background-color: #22c3bb;
}

#paragraph-con {
    width: 100%;
}
#paragraph-con > div {
    margin-left: calc(50vw - 72px);
    max-width: 420px;
}

.split-words {
    opacity: 0;
}

.split-words > span {
    opacity: 0;
    color: #096581;
    display: inline-block;
}

.split-words > span.flash {
    /* text-shadow: 1px 1px 3px #c9fff8, -1px -1px 5px #ffffb3; */
    /* animation: flash-animation 0.5s; */
    /* color: #08af69; */
    /* text-shadow: 1px 1px 3px #f8ffcf, -1px -1px 5px #eeffea; */
    /* transition: color 0.2s, text-shadow 0.2s; */
}

.gradient-text {
    background: linear-gradient(45deg, #02bbd8, #eff706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1200px) {
    #paragraph-con > div {
        margin-left: calc(50vw - 180px);
    }
}

@media screen and (max-width: 540px) {
    #logo-con {
        transform: scale(0.8);
        transform-origin: bottom center;
    }
    #paragraph-con > div {
        margin-left: auto;
        margin-right: auto;
    }
    .split-words {
        text-align: center;
    }
    #main-con {
        justify-content: flex-start;
        padding-top: 80px;
    }
}

@media screen and (max-width: 460px) {
    body {
        font-size: 24px;
    }
    #logo-con {
        transform: scale(0.6);
        transform-origin: bottom center;
    }
    #paragraph-con > div {
        max-width: 330px;
    }
}