/* index.css: Styles specific to the landing page */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #000000;
    background: transparent; /* Inherit starfield/background from base */
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
}

h1 {
    color: #000000;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.4em;
    transition: color 0.2s;
    font-size: 1.15rem;
}
a:hover {
    color: #000000;
    text-decoration: underline;
}
