html{
    overflow: hidden;
}

body {
    background-color:#3e4c59;
    color: #e0e0e0;
    font-family: monospace;
    text-align: center;
    display: flex;
    overflow: hidden;
}
.content {
    display: inline-block;;
    z-index: 5;
    margin: 0 auto;
}
.content::before {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}
a{
    color: #e0e0e0;
    text-shadow:
    0 0 1px #e0e0e0,
    1px 0px 4px #e0e0e0,
    -1px -1px 6px #e0e0e0;
}
h2{
    color: #e0e0e0;
    text-shadow:
    0 0 1px #e0e0e0,
    1px 0px 4px #e0e0e0,
    -1px -1px 6px #e0e0e0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: backdrop-filter 1s ease, opacity 1s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

#fuckingbutton {
    animation: pulsate 0.11s ease-in-out infinite alternate;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: none;
    color: #E1D2E0;   
    transition: transform 0.3s;
    filter: blur(0.2px) brightness(1.1);
    background-color: transparent;
    text-shadow:
    0 0 1px #fff,
    1px 0px 4px #ffffff,
    -1px -1px 6px #ffffff;
}

#fuckingbutton:hover {
    transform: scale(1.05);
}

.overlay.hide {
    backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
}
