

h2 {
    font-size: 3.2em;
    font-family: Merriweather, Ubuntu, sans-serif;

    color: rgb(231, 246, 255);

    text-align: center;

    padding-top: 0%;

    padding-left: 20%;
    padding-right: 20%;
} 

body {
    top: 0;
    left: 0;
    right: 0;

    font-size: 1vw;

    section.graph-grid {

        width: 100vw;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 5%;

        div.graph-container {
            width: 95%;
            height: auto;

            margin-left: auto;
            margin-right: auto;

            img.normal-aspect {
                width: 100%;
                height: auto;

                aspect-ratio: 16/8.25;
            }

            img.stretched-aspect {
                width: 100%;
                height: auto;

                aspect-ratio: 16/10;
            }
        }

        div.iframe-container {
            grid-column: span 2;
            width: 75%;
            height: auto;

            iframe {
                width: 100%;
                height: auto;

                aspect-ratio: 1/1;
            };
        }
    }

    /* *{border: 5px solid black;} */


}
