.description {
    position: relative;
}

.profile-image {
    background-image: url(https://i.postimg.cc/T2cNd0Lx/aiony-haust-3-TLl-97-HNJo-unsplash.jpg);
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.about-me {
    font-size: 24px;
    max-width: 700px;
    text-align: center;
}

.blob-1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: -1;
    width: 400px;
    height: 400px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 33%;
    right: 20%;
    z-index: -1;
}

.blob-3 {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 10px;
    right: 10px;
}

@media (max-width: 800px) {
    .blob-1 {
        display: none;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    .about-me {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .profile-image {
        width: 260px;
        height: 260px;
    }

    .about-me {
        font-size: 14px;
    }
}