
@font-face {
    font-family: Roboto;
    src: url(Roboto-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(Roboto-Italic-VariableFont_wdth\,wght.ttf);
    font-style: italic;
}

body {
            margin: 0;
            background-color: #eaeaea;
            font-family: 'Roboto', sans-serif;
        }

        .container {
            max-width: 900px;
            margin: 40px auto;
            background-color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .text {
            flex: 1;
        }


         

        figure {
            flex: 1;
            margin: 0;
            float: right;
            margin-left: 20px;
        }

        figure img {
            max-width: 100%;
            height: auto;
        }

        figcaption {
            font-size: 0.9em;
            color: gray;
            margin-top: 5px;
        }

        h1 {
            margin-top: 0;
        }

        .source {
            font-style: italic;
        }

        /* Mobiilinäkymä */
        @media (max-width: 600px) {
            .container {
                flex-direction: column;
            }
        