/* --- GLOBAL STYLES --- */
body {
    /* This dark background is sampled from your screenshot */
    background-color: #0c0b0f; 
    
    /* This font looks clean and modern, similar to your design */
    font-family: 'Poppins', sans-serif;
    
    color: #ffffff; /* Default text color is white */
    margin: 0;
    padding: 0;
}

#website-container {
    width: 100%;
    max-width: 1200px; /* Limits the content width on very large screens */
    margin: 0 auto; /* Centers the website */
    padding: 0 20px; /* Adds some space on the sides */
    box-sizing: border-box; /* Important for layout */
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-weight: 700; /* Makes headings bold */
    text-transform: uppercase; /* Makes headings all caps */
}

a {
    /* This is the primary purple/blue accent color from your design */
    color: #8a2be2; 
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}