
body{
    margin: 0;
    padding: 0.15px; /* body is full of absolute and fixed elements which have 0 height on body, so added this to counter it */
    box-sizing: border-box;
    background: linear-gradient(90deg, rgb(0, 59, 56), rgb(0, 202, 192));
}


.c{
    position: absolute;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.c1{
    position: fixed;
    left: 70%;
    top: 30%;
    height: 300px;
    width: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
    background: linear-gradient(90deg, rgb(0, 59, 56), rgb(0, 202, 192));
    filter: blur(8px);
}


.c2{
    position: fixed;
    left: 10%;
    top: 10%;
    height: 300px;
    width: 300px;
    border-radius: 33% 67% 11% 89% / 63% 89% 11% 37%;
    background: linear-gradient(200deg, rgb(0, 59, 56), rgb(1, 158, 150));
    filter: blur(8px);
}


.c3{
    position: fixed;
    left: 40%;
    top: 60%;
    height: 300px;
    width: 300px;
    background: linear-gradient(200deg, rgb(0, 59, 56), rgb(1, 158, 150));
    filter: blur(8px);
    border-radius: 56% 64% 24% 74% / 42% 33% 61% 40% ;
}


.name{
    position: absolute;
    display: flex;
    left: 50%;
    top: 50%;
    margin-top: -250px;
    margin-left: -500px;
    height: 500px;
    width: 1000px;
    background-color: #cdd1d1;
    background: rgba(64, 194, 188, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    justify-content: space-between;
    flex-direction: column;
    z-index: 2;
    justify-content: space-evenly;
    align-items: center;
    color: #003b38;
}
.name img{
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin-top: -150px;
}


@media screen and (max-width: 768px) {
    .name{
        width: 60%;
        position: absolute;
        left: 60%;
        top: 60%;
        height: 400px;
        margin: -200px -200px 0 calc(60% - 600px);
        padding: 0 -30px 0 -30px;
    }
    h1{
        font-size: 25px;
    }
    h2{
        font-size: 20px;
    }
}


