body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background: url('xxxreborn.jpg') no-repeat center center/cover;
}
.center-window {
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
    text-align: center;
}
.center-window button {
    padding: 30px 90px;
    background: transparent;
    border: none;
    font-family: "Jersey 15", serif;
    font-size: 80px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.center-window button:hover {
    backdrop-filter: blur(5px);
    background-color: #050505;
}
.center-dwnwindow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px 90px;
}
.center-dwnwindow svg {
    height: 40px;
    width: 40px;
}
.center-dwnwindow a {
    text-decoration: none;
    font-family: "Jersey 15", serif;
    font-size: 50px;
    color: #900808;
    transition: color 0.3s;
}
.center-dwnwindow a:hover {
    color: #c92525;
}
button,button::after {
    padding: 10px 50px;
    font-size: 80px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    position: relative;
}
button::after {
    --move1: inset(50% 50% 50% 50%);
    --move2: inset(31% 0 40% 0);
    --move3: inset(39% 0 15% 0);
    --move4: inset(45% 0 40% 0);
    --move5: inset(45% 0 6% 0);
    --move6: inset(14% 0 61% 0);
    clip-path: var(--move1);
    content: 'AWAY OUT';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
button:hover::after {
    animation: gl 1s;
    text-shadow: 10 10px 10px black;
    animation-timing-function: steps(2, end);
    text-shadow: -3px -3px 0px #9c2222, 3px 3px 0px #3e3e3e;
    background-color: transparent;
}
button:hover {
    background-color: transparent;
    box-shadow: 0px 10px 10px -10px rgb(135, 14, 14);
}
@keyframes gl {
    0% {
        clip-path: var(--move1);
        transform: translate(0px,-10px);
    }
    10% {
        clip-path: var(--move2);
        transform: translate(-10px,10px);
    }
    20% {
        clip-path: var(--move3);
        transform: translate(10px,0px);
    }
    30% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }
    40% {
        clip-path: var(--move5);
        transform: translate(10px,-10px);
    }
    50% {
        clip-path: var(--move6);
        transform: translate(-10px,10px);
    }
    60% {
        clip-path: var(--move1);
        transform: translate(10px,-10px);
    }
    70% {
        clip-path: var(--move3);
        transform: translate(-10px,10px);
    }
    80% {
        clip-path: var(--move2);
        transform: translate(10px,-10px);
    }
    90% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }
    100% {
        clip-path: var(--move1);
        transform: translate(0);
    }
}
@media (max-width: 768px) {
    body {
        overflow: hidden;
    }
    .center-window {
        margin-left: 30px;
    }
    .center-window button {
        font-size: 45px;
        padding: 25px 100px;
    }
    .center-dwnwindow {
        font-size: 45px;
        margin-left: 30px;
    }
}