/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=VT323&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --retro-dark: rgb(32,38,72);
    --retro-light: rgb(245,243,233);
    
    /* Typography */
    --font-main: 'Share Tech Mono', monospace;
    --font-secondary: 'VT323', monospace;
    
    /* Base styles */
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--retro-dark);
}

/* Base styles */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--retro-dark);
    overflow-x: hidden;
}

/* Typography base styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.2;
}

p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Common text styles */
.info-text {
    color: var(--retro-dark);
    opacity: 0.9;
}

/* Form elements base styles */
label,
input,
textarea {
    color: var(--retro-dark);
}

/* Footer base styles */
footer {
    text-align: center;
    padding: 0.8rem;
    background-color: var(--retro-dark);
    color: var(--retro-light);
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    transform: rotate(-0.5deg);
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
} 