/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #222;
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shutdown-message {
  max-width: 600px;
  padding: 20px;
  background: #333;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
  animation: fade-in 2s ease-in-out;
}

.shutdown-message h1 {
  color: #f44336;
  font-size: 30px;
  margin-bottom: 10px;
}

.shutdown-message p {
  font-size: 18px;
  margin-bottom: 10px;
}

.glitch {
  font-size: 20px;
  color: #0f0;
  display: inline-block;
  animation: glitch 1.5s infinite;
}

.glitch a {
  color: #4CAF50;
  text-decoration: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glitch {
  0% {
    text-shadow: 4px 0px #ff0000, -4px 0px #0000ff;
  }
  50% {
    text-shadow: -4px 0px #ff0000, 4px 0px #0000ff;
  }
  100% {
    text-shadow: 4px 0px #ff0000, -4px 0px #0000ff;
  }
}

