@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
    position: relative;
    background: rgb(255, 255, 255);
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: "Pixelify Sans", serif;
}

.blob-container {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    filter: blur(20px);
    -webkit-filter: blur(20px);
}

.blob {
    position: absolute;
    aspect-ratio: 1/1;
    opacity: 0.7;
    border-radius: 40% 50% 30% 40%;
}

.blob.one {
    background: rgb(255, 0, 0, 0.9);
    width: 300px;
    left: 25%;
    top: 10%;
    animation: transfotm 14s ease-in-out infinite both alternate,
    movement_one 24s ease-in-out infinite both alternate;
}

.blob.two {
    background: rgb(0, 255, 0, 0.9);
    width: 200px;
    left: 65%;
    top: 50%;
    animation: transfotm 12s ease-in-out infinite both alternate,
    movement_two 32s ease-in-out infinite both alternate;
}

.blob.three {
    background: rgb(0, 0, 255, 0.9);
    width: 250px;
    left: 45%;
    top: 75%;
    animation: transfotm 10s ease-in-out infinite both alternate,
    movement_three 16s ease-in-out infinite both alternate;
}

@keyframes transfotm {
    0%, 100% {
        border-radius: 33% 67% 70% 30% / 30% 40% 70% 70%;
    }
    20% {
        border-radius: 37% 63% 51% 49% / 37% 35% 35% 63%;
    }
    40% {
        border-radius: 36% 64% 64% 36% / 64% 48% 52% 26%;
    }
    60% {
        border-radius: 37% 63% 51% 49% / 30% 30% 70% 73%;
    }
    80% {
        border-radius: 40% 60% 42% 58% / 51% 51% 49% 59%;
    }
}

@keyframes movement_one {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: translate(-50px, 30px) scale(1);
    }
}

@keyframes movement_two {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: translate(-50px, 30px) scale(1.2);
    }
}

@keyframes movement_three {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: translate(-50px, 10px) scale(1.3);
    }
}

h1 {
    margin: 3%;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgb(0, 0, 0, 0.1);
    color: black;
    z-index: 1;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px;
    background: rgb(0, 0, 0, 0.1);
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    z-index: 1;
}

a {
    text-decoration: none;
    color: black;
    background-color: rgb(0, 0, 0, 0.1);
    padding: 7px 15px;
}

@media (max-width: 800px) {
    img {
        width: 50%;
        height: auto;
    }
}
@media (min-width: 801px) {
    img {
        width: 80%;
        height: auto;
    }
}
img {
    z-index: 1;
}