/* Basic page style */
body {
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    overflow: hidden;
    background: black;
    color: #a020f0; /* default text purple */
    text-shadow: 0 0 4px #a020f0, 0 0 9px #a020f0;
}

/* Matrix canvas */
canvas#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Center content for About page */
.page-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

/* Main titles (h1) green */
.page-content h1 {
    color: #00ff00;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
}

/* Links (like GitHub icon) */
a {
    color: #bf22f3;
    text-decoration: none;
}

.page-content a img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Footer style */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #00ff00;
    z-index: 5;
    font-size: 0.8rem;
}

a img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.page-content, footer {
    /* Dim background */
    background-color: rgba(0, 0, 0, 0.7); /* black with 70% opacity */
    padding: 30px;
    border-radius: 10px;
}
