body{
    background-color: #F8F9FA;
    color:#121B23;
	font-family:Encode Sans, Lato, sans-serif;
    line-height: 1.7em;
    letter-spacing: 0.5px;
    margin:0;
}

h2{
    line-height: 1.6em !important;
}

.body-container{
    max-width: 700px;
    margin:auto;
    padding: 0 3em;
}

.container{
    background-color: #fff;
    margin:4em auto;
    display:flex;
    justify-content: center;
    border-width: 2px;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header{
    background-color:#263238;
	color:#fff;
    border-bottom: 7px solid #1B252A;
    width:100%;
    height: auto;
    margin-bottom: 6em; 
    padding: 5em 0;
}

.image-container{
    margin:auto;
    width: 40%;
    /* border-style: solid;
    border-color:red; */
}

.image{
    width: 100%;
}

.box-header{
    width:30%;
    /* border-style: solid;
    border-color:red; */
}

.box-body{
    width:70%;
    /* border-style: solid;
    border-color:red; */
}

.banner{
    background-color: #4f5b62;
    color:#fff;
    height:30%;
    display:flex;
    justify-content: center;
    font-weight: 600;
}

.site-footer{
    background-color:#263238;
    color:#fff;
    height: 60%;
    display:flex;
    justify-content: center;
    padding: 25px 0;
}

.footer-container ul{
    list-style: none;
}

.footer-container li{
    display:inline;
    padding: 0 10px;
}

@media only screen and (max-width:700px) {
    /* For mobile phones: */
    .image-container{
      width:60%;
    }

    .container{
        display:block;
        position:relative;
    }

    .box-header, .box-body{
        width: 100%;
    }

    .footer-container li{
        display:block;
        position: relative;
        padding: 0;
    }
  }