

html,
body {
    margin-left: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: rgb(26, 25, 25);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    /*overflow-y: hidden;
    overflow-x: hidden;*/
    text-decoration: #fff; 
    place-items: center;
}

a{
    color: #fff;
}

.glow-on-hover {
    width: 250px;
    height: 60px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: sticky;
    z-index: 0;
    border-radius: 10px;    
    padding: auto;
    font-size: 15px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    
    
}


.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

h1{
    text-align: center;
    color: white;
    display: flex;
    
    justify-content: center;
    align-items: center;
    font-family: 'hackedregular';
    font-size: 60px;
}
@font-face {
    font-family: 'hackedregular';
    src: url('hacked-kerx-webfont.woff2') format('woff2'),
         url('hacked-kerx-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

p{ 
    color: white;
    font-family: 'Courier New', Courier, monospace;
    
 }

 footer{
    margin-top: auto;
    justify-content: center;
    text-align: center;
    color: #fff;
    bottom: 15px;
    padding: 10px 10px;
 }

th{
    padding: 15px;
}
h4{
    color: #fff;
    text-align: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
}



.wrapper{
    height: 100px;
    width: 360px;
    cursor: default;
    background: linear-gradient(135deg, aqua, rgb(0, 255, 0), rgb(255, 255, 0), orange, red, rgb(255, 0, 234));
    border-radius: 10px;
    animation: animate 1.5s linear infinite;
}

.wrapper .display,
.wrapper span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper .display{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: #1b1b1b;
    border-radius: 6px;
    height: 85px;
    width: 345px;
    text-align: center;
}


.wrapper .display #time{
    font-size: 50px;
    line-height: 85px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(135deg, aqua, rgb(0, 255, 0), rgb(255, 255, 0), orange, red, rgb(255, 0, 234));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 1.5s linear infinite;
}

@keyframes animate {
    100%{
        filter: hue-rotate(360deg);
    }
}

.wrapper span{
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 10px;
}

.wrapper span:first-child{
    filter: blur(10px);
}

.wrapper span:last-child{
    filter: blur(20px);
}
