body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: block;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 15px;
}

a:not(.social-icon) {
    display: block;
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

a:not(.social-icon):hover, a.email-link:hover {
    background-color: #0056b3;
}

.social-icons {
    margin-top: 20px;
    text-align: center;
}

.social-icons a.social-icon {
    color: #333;
    font-size: 24px;
    margin: 0 10px;
    background: none;
    display: inline-block;
    padding: 0;
}

.social-icons a.social-icon:hover {
    opacity: 0.7;
}

.email-link {
    background: none !important; /* poistaa taustavärin */
    border: none !important; /* poistaa reunukset */
    padding: 0 !important; /* poistaa sisäisen marginaalin (padding) */
    box-shadow: none !important; /* poistaa varjon, jos sellainen on */
    color: blue !important; /* asettaa tekstin värin siniseksi; voit valita minkä tahansa värin */
    text-decoration: underline !important; /* lisää alleviivauksen linkkiin */
}

.map-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
}

/* Responsiiviset tyylit */

/* Pienet näytöt (puhelimet) */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    a {
        padding: 8px 12px;
    }

    .social-icons a {
        margin: 0 5px;
        font-size: 20px;
    }
}

/* Suuret näytöt */
@media (min-width: 601px) and (max-width: 1200px) {
    .container {
        width: 80%;
    }
}
