/* CSS Custom Properties */
:root {
    --text-size: 16px;
    --line-height: 1.8;
    --spacing-large: 80px;
    --spacing-medium: 40px;
    --spacing-small: 30px;
    --color-text: #333;
    --color-bg: #f5f5f5;
    --color-link: #4a90e2;
    --color-link-hover: #357abd;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 550;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: var(--line-height);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 180px var(--spacing-medium);
}

/* Layout */
.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.dot-pattern {
    margin-bottom: var(--spacing-large);
    position: relative;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-pattern {
    max-width: 400px !important;
    width: 400px !important;
    height: auto !important;
}

/* Typography */
.intro, 
.description, 
.contact {
    font-size: var(--text-size);
    line-height: var(--line-height);
}

.intro {
    margin-bottom: var(--spacing-small);
}

.description {
    margin-bottom: 0;
}

/* Links */
.contact a {
    color: var(--color-link);
    text-decoration: underline;
}

.contact a:hover,
.contact a:focus {
    color: var(--color-link-hover);
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 60px var(--spacing-medium);
    }
    
    .dot-pattern {
        margin-bottom: 100px;
        height: 120px;
    }
    
    .svg-pattern {
        max-width: 400px !important;
        width: 400px !important;
    }
}