body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 10;    
}

.buttons {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.dynamic-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.dynamic-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.75s;
    border-radius: 40%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
}

.dynamic-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
}

.dynamic-button:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: background-position 0.1s;
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: #001f3f;
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}
