body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h1 {
    font-weight: normal;
    font-size: 2em;
}

h2 {
    font-size: 2em;
    color: darkcyan;
}

img.logo {
    position: absolute;
    left:10px;
    width:80px;
}

img.suuri {
    width: 350px;
    border: solid black 1px;
}

div.banner {
    width:100%;
    height:80px;
    background-color: #009AE1;
    color: white;
}

.banner-column {
    float:left;
}

.banner-column.left {
    width: 30%;
}

.banner-column.right {
    float:left;
    width: 100%;
    margin: auto;
    text-align: center;
}

div.tableau {
    float:left;
    text-align: center;
    width:50%
}

div.cognos {
    float:right;
    text-align: center;
    width:50%
}

.column>p {
    width:350px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
}

.content {
    width:100%;
}

/* enough for two large images, center it */
.row {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.column {
    margin: 80px 0px 50px 0px;
}

.row:after {
    clear: both;
}

/* make the columns stack on top of each other instead of next to each other on smaller screens or windows */
@media screen and (max-width: 720px) {
    .row {
        width:100%;
    }
    .column {
        width: 100%;
        display: inline-block;
        margin: 20px auto;
    }
    div.cognos{
        float: none;
    }
    div.tableau{
        float: none;
    }

}

/* On mobiles hide the logo and let the text show */
@media screen and (max-width: 400px){
    img.logo {
        display: none;
    }
}