/* Font declarations - Inter (sans-serif) and JetBrains Mono (monospace) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
}

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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - top left */
header {
    padding: 2rem;
}

header h1 {
    font-size: 24pt;
    font-weight: 400;
}

/* Main content - centered */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: -5rem;
}

/* Logo - circular display */
.logo {
    width: 400px;
    height: 400px;
    border-radius: 50%; /* Makes it circular */
    object-fit: cover;
    border: 4px solid #333333;
}

/* Contact text */
.contact {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 14pt;
}

/* Footer - bottom right */
footer {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
}

.copyright {
    font-size: 10pt;
    color: #666666;
}
