/* Global CSS Settings */
#container {
   display:grid;
   grid-template-rows:auto 1fr auto;
   grid-template-columns:100%;

   /* fallback height */
   min-height:100vh;

   /* new small viewport height for modern browsers */
   min-height:100svh;
}
#grid-container > header {
/*    padding:2rem; */
    background:#FFFFFF;
}
#grid-container > main {
    padding:2rem;
    background:#fff;
}
#grid-container > footer {
/*    padding:2rem; */
    background:#72c2f1;
}

/* Basic html formating */
h2.heading {
    font-size: 32px;
    position: relative;
    margin-bottom: 60px;
	color:#373c41;
	font-family: 'Noto Serif', serif;
}

h2.heading::after {
    position: absolute;
    content: "";
    width: 130px;
    height: 2px;
    background: #3a8adf;
    left: 0;
    top: 55px;
}

h2.heading span {
color:#3a8adf;
font-weight: 700;
font-style: italic;
}

.welcome-text p {
    font-size: 14px;
    line-height: 26px;
    color: #393c40;
    margin-bottom: 25px;
}
 .fullTextinner ul li {
    list-style: disc;
    font-size: 14px;
    line-height: 24px;
    margin-left: 20px;
}

.fullTextinner ul {
    margin-bottom: 20px;
}
.welcome-image {
    float:right;
	width:41%;
}