@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;700&display=swap');

body {
    background: linear-gradient(135deg, #0d0d0d 25%, #1a1a1a 100%);
    color: #00ffcc;
    font-family: 'Oxanium', 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

canvas#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.techno-container {
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    padding: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid #00ffcc;
}

.techno-header {
    text-align: center;
    border-bottom: 2px solid #00ffcc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.techno-main {
    padding: 20px;
}

h1 {
    color: #00ffcc;
    font-size: 2em;
    margin: 0;
}

h2 {
    color: #00ffcc;
    font-size: 1.5em;
    border-bottom: 1px solid #00ffcc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

p,
li {
    color: #ffffff;
    font-size: 1em;
}

a {
    color: #00ffcc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}