body {
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
    padding: 0;
    color: #333;
    position: relative;
    background-color: #000000;
    overflow-x: hidden;
}

header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, black, transparent);
}

main {
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto; 
}

section {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    transition: transform 0.2s ease-in-out;
}
section:hover{
    transform: translateY(-2px);
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 0.7rem; 
}

footer {
    text-align: center;
    color: #ffffff;
    padding: 1rem;
    background-color: transparent;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    color: #3498db;
}

a {
    color: #3498db; 
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/*
canvas#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
*/
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#rainBackground {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}