body {
    margin:0;
    padding:0;
    font:normal 14px Helvetica,Arial,sans-serif;
    font-size:1.4rem;
    background-color:aliceblue;
    line-height: 1.2;
}

.wrap{
    display: flex; 
    flex-direction: row;
    flex-wrap: wrap;
}

.side{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    width:49%;
    max-width: 768px;
}

.left{
    flex: 1;
    height:100vh;
    color:forestgreen;
    font-weight: 400;
}

.right{
    flex: 1;
    justify-content: stretch;
    padding-right: 8%;
    padding-top: 1%;
    padding-bottom: 8%;
    padding-left: 14%;
}
header{
    z-index: 3;
    position: fixed;
    top: 5%;
    left: 3%;
    width: 49%
}
#leftfooter{
    z-index: 3;
    position: fixed;
    bottom: 30px;
    width: 49%;
    padding: 1%;
}

#imageLeft{
    height:100vh;
    z-index: 1;
    position: fixed;
    width: 49%;
}
@media screen and (max-width: 555px) {
    #imageLeft,#leftfooter,header{
        position: relative;
        width: 100%;
    }
        
    .left{
        height: 100%;
    }
}
                
.mainText{
    box-shadow: 3px 3px 5px 6px #ddd;
    padding: 2%;
}

.midImage{
    width: 100%
}

li{
    padding: 2px;
}
span{
    font-style: oblique;
    font-weight: 400;
    text-decoration: underline;
}


/*Media queries to make the screen responsive, I place it at the very end so that the sequence of actions be accordingly */
/*
@media screen and{max-width:480px}{
    .left{width: 100%;}
}*/
