﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* Content styles only */

.taskContent {
    display: block;
    height:100%;
    font-size: 0.8rem;
    background-color: #ffffff;
    color: #333;
   padding: 0.3rem;
    margin: 0;
    text-align: justify;
}

.taskHeading {
    color: #228B22;
    font-weight: bold;
}

.logo-title {
    font-size: 3vw;
    color: #32CD32;
    font-weight: bold;
}

/* Add centering class */
.center-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 2px 0 !important;
}
    .center-content img.logo-img {
        max-width: 150px !important;
        height: auto !important;
        display: block !important;
        width: 100% !important;
    }