* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    /* Set base color first to prevent white flash */
    background-color: #0a0a0a; 
    /* Layer your pattern */
    background-image: url('../images/pattern.png'); 
    background-repeat: repeat;
    background-size: 80px; /* Smaller pattern looks more technical */
    
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}