body {
    background-color: transparent;
    margin: 0;
    padding: 0;
}


.creative-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 300;
}

.creative-container img {
    max-width: 100%;
    height: auto;
}


.button-container {
    position: relative;
    height: 200px;
    width: 320px;
    overflow: hidden;
}

.glass-button {
    width: 300px;
    height: 300px;
    z-index: 200;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 300px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.15);
    bottom: -15px;
    left: 10px;
}
.glass-button span {
    width: 100%;
    height: 100%;
    position: relative;
}

.glass-container {
    position: absolute;
    inset: 0;
    border-radius: 300px;
    height: 100%;
    width: 100%;
}

.glass-effect-backdrop {
    border-radius: 300px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.glass-effect {
    border-radius: 9999px;
    position: absolute;
    left: 0px;
    right: 0;
    height: 0.8rem;
    width: 100%;
    -webkit-backdrop-filter: url(#distortion);
    backdrop-filter: url(#distortion);
}

.glass-effect.top {
    top: 0;
}

.glass-effect.bottom {
    bottom: 0;
}

.glass-effect.left {
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.8rem;
    height: 100%;
}

.glass-effect.right {
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    width: 0.8rem;
    height: 100%
}
