:root {
    --font: 'Poppins', sans-serif;
}

html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e8edf5;
    background-image:
        radial-gradient(ellipse at 15% 80%, rgba(41, 128, 185, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(44, 62, 80, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(41, 128, 185, 0.1) 0%, transparent 60%);
    overflow: hidden;
    position: relative;
}

html::before,
html::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

html::before {
    width: 450px;
    height: 450px;
    background: rgba(41, 128, 185, 0.2);
    top: -100px;
    right: -50px;
    animation: floatBlob1 18s ease-in-out infinite;
}

html::after {
    width: 400px;
    height: 400px;
    background: rgba(44, 62, 80, 0.18);
    bottom: -80px;
    left: -60px;
    animation: floatBlob2 22s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 60px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

body {
    margin: 20px 0px;
    width: auto;
    height: auto;
    font-family: var(--font);
    position: relative;
    z-index: 1;
    background: transparent;
}

@media screen and (max-width: 700px) {
    html { height: auto; padding: 20px; }
    html::before { width: 250px; height: 250px; }
    html::after { width: 200px; height: 200px; }
}
