:root {
    --bg-color: #0b0f14;
    --text-color: #d7dde5;
    --muted-color: #8b96a5;

    /* Cyprus-style blue (close to flag / Mediterranean blue) */
    --accent-color: #1e6fd9;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Roboto Condensed', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);

    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 520px;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    margin-top: 0;
}

img {
    height: 5rem;
}

.tagline {
    font-size: 1.05rem;
    color: var(--muted-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.linkedin {
    font-size: 0.95rem;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.linkedin:hover {
    border-color: var(--accent-color);
    opacity: 0.85;
}