body{
    background-color: black ; 
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1{
    text-align: center;
    margin-top: 0.8em;
    margin-bottom: 1em;
}

.bubble {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes move {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.invert-svg {
    filter: invert(1);
}
