h2 {
    animation: pulsate 0.11s ease-in-out infinite alternate;
    color: #fff;
    z-index: 1;
    position: relative;
}
body {
    background: black;
    color: white;
    font-family: monospace;
    text-align: center;
    position: relative;
    overflow: hidden;
}
a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: 0.2s ease-in-out;
    display: inline-block;
    width: 100;
}
a:hover {
    color: red;
}
img {
    max-height: 300px;
    opacity: 0.8;
    z-index: 0;
    margin-top: -10px;
}
.content {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    position: 5px !important;
}
.content::before {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

.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: #ffffff;   
    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;
}

.logo {
    animation: swing 1s ease-in-out infinite alternate;
    top: -5px;
    position: relative;
}

/* https://css-tricks.com/how-to-create-neon-text-with-css/ */
@keyframes pulsate {
  0% {
    text-shadow:
      1px 0px 4px #ffffff,
      -2px -1px 6px #ffffff,
      2px 2px 10px #ffffff,
      -1px 2px 20px #ffffff,
      2px -3px 30px #ffffff,
      -3px 1px 40px #ffffff,
      1px 3px 55px #ffffff;
  }

  100% {
    text-shadow:
      -1px 1px 6px #ffffff,
      2px -2px 9px #ffffff,
      -3px 2px 15px #ffffff,
      3px -1px 25px #ffffff,
      -2px 3px 35px #ffffff,
      1px -3px 50px #ffffff,
      -2px -2px 70px #ffffff;
  }
}
/* sam suka sdelal!!!!!! */
@keyframes swing {
    0% { transform: perspective(1000px) rotateX(10deg); }
    100% { transform: perspective(1000px) rotateX(-10deg); }
}