        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
            padding-bottom: 25px;
        }
        header {
            background-color: #0092ca;
            color: white;
            padding: 20px;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 36px;
        }
        section {
            padding: 20px;
            max-width: 210mm;
            background-color: white;
        }
        h2 {
            color: #4CAF50;
        }
        .contact-info {
            font-size: 16px;
        }
        .contact-info a {
            color: white;
            text-decoration: none;
        }
        .section-title {
            font-size: 20px;
            margin-top: 20px;
        }
        .experience, .education, .skills {
            margin: 10px 0;
        }
        .experience p, .education p {
            margin: 5px 0;
        }
        footer {
            text-align: center;
            background-color: #333;
            color: white;
            padding: 3px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        .separator {
            border-bottom: 1px solid #333;
            margin: 10px 0 20px 0;
        }
        /*resposiivisuus*/
        .container {
            display: flex;
            padding: 20px;
        }

        .left {
            background-color: lightblue;
            flex: 0 0 30%; /* Vasemman osion leveys 30% */
            padding: 20px;
            box-sizing: border-box;
            border-radius: 6px;
            max-width: 250mm;
        }

        .right {
            flex: 0 0 70%; /* Oikean osion leveys 70% */
            padding: 20px;
            box-sizing: border-box;
        }
        /*mobiili*/
        @media (max-width: 820px) {
            .container {
                flex-direction: column; /* Elementit menevät päällekkäin */
            }

            .left, .right {
                flex: 0 0 100%; /* Molemmat osiot 100% leveitä */
                padding: 5px;
            }
        }

        /*Valikko*/
        ul.valikko {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #00374d;
        margin-bottom: 6px;
        }

        ul.valikko li {
        float: left;
        border-right: 1px solid #bbb;
        }
        ul.valikko li a {
            display: block;
            padding: 8px;
            color: white;
            text-decoration: none;
        }
        ul.valikko li a:hover {
        background-color: black;
        }
        footer {
        min-height: 12px;
        }