* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  color:#ff6652;
  transition-duration: 0.4s;
  display: inline-block;
}
a:hover{
  color:#e9d3d0;
  transform: scale(1.04);
}

body {
            background-color: #0a0a0a;
            color: #00ff41;
            font-family: 'Courier New', Courier, monospace;
            height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            text-shadow: 0 0 5px #00ff41;
        }

        .container {
            text-align: center;
            border: 1px solid #00ff41;
            padding: 40px;
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
            background: rgba(0, 0, 0, 0.9);
        }

        h1 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        /* Button Styling */
        .btn {
            background: transparent;
            color: #00ff41;
            border: 1px solid #00ff41;
            padding: 15px 30px;
            font-size: 1rem;
            font-family: 'Courier New', Courier, monospace;
            cursor: pointer;
            margin: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn:hover {
            background: #00ff41;
            color: #000;
            box-shadow: 0 0 15px #00ff41;
        }

        /* The "Unclickable" Button */
        #keepBtn {
            position: relative;
            opacity: 0.6;
            border-color: #ff0000;
            color: #ff0000;
            text-shadow: 0 0 5px #ff0000;
        }

        #keepBtn:hover {
            background: transparent;
            box-shadow: none;
        }

        #statusText {
            margin-top: 25px;
            height: 20px;
            font-size: 1.2rem;
        }


#matrixCanvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -10; /* Behind everything */
        }