:root {
    --bg-main: #050b10;
    --bg-elevated: #070f18;
    --accent: #64f0a3;
    --accent-soft: rgba(100, 240, 163, 0.08);
    --accent-border: rgba(100, 240, 163, 0.5);
    --text-main: #e6f7ee;
    --text-muted: #8ab7a0;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../text-style/Ubuntu/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../text-style/Ubuntu/Ubuntu-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

#matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100%;
    color: #64f0a3;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.2;
    animation: matrix-fall linear infinite;
    text-shadow: 0 0 5px #00ff41;
}

@keyframes matrix-fall {
    to { transform: translateY(100vh); }
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

h1{
    font-size: 45px;
    padding: 5px 0;
}

p{
    font-size: 20px;
}


ul{
    list-style: none;
}

a{
    text-decoration: none;
    cursor: pointer;
}

.container {
    padding: 0 40px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}
