/* Yhteystiedot.css */

/* Varmistetaan, että koko sivu on mustalla taustalla */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    //background-color: #000; /* Musta tausta */ #121212
    background-color: #121212;
    color: #fff; /* Valkoinen teksti */
    text-align: center;
}

/* Otsikon tyyli */
h1 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Yleiselle tekstille */
p {
    font-size: 1.0em;
    line-height: 1.5;
}

/* Varmistetaan, että linkit erottuvat taustasta */
a {
    color: #4CAF50; /* Vihreä linkkiväri */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
