body {
    background: #d9fffe;
    background: -moz-linear-gradient(to right, #d9fffe 0%, #fffeff 100%);
    background: -webkit-linear-gradient(to right, #d9fffe 0%, #fffeff 100%);
    background: linear-gradient(to right, #d9fffe 0%, #fffeff 100%);
    font-family: "Gochi Hand", cursive;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h3 {
    font-weight: bold;
    color: rgb(51, 51, 51);
}

div#element {
    width: 300px;
    height: 500px;
    text-align: center;
}

.button {
    margin: 6px;
    padding: 15px 40px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    z-index: 1;
    font-family: "Gochi Hand", cursive;
    cursor: pointer;
}

.button::after,
.button::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}

.button::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #28282d;
}