.content{
    background-color: black;
}
body {
margin: 0;
padding: 0;
background-color: black;
display: flex;
justify-content: flex-start;
align-items: stretch;
min-height: 100vh;
}

.container {
display: flex;
flex-direction: row;
width: 100%;
}

.left-sidebar {
background-color: white;
flex: 1;
} 

.content {
flex: 3;
padding: 20px;
color: white; 
}

.right-sidebar {
background-color: white;
flex: 1;

}

div .header{
  text-align: center;
  display: flex;
  justify-content: center; 
  align-items: center;
}
img{
    height: 150px;
}

div .body{
    background-color: red;
    height: 70%;
    margin-left: 100px;
    margin-right: 100px;
}

.footer img {
    float: right;
    height: 60px;
    margin-right: 20px;
    margin-bottom: 20px;
}
div .body h1{
    margin-left: 20px;
   color: white;
   font-size: 16px;
   font-family: Arial, Helvetica, sans-serif;
}

div .body h2{
    margin-left: 20px;
   color: white;
   font-size: 16px;
   font-family: Arial, Helvetica, sans-serif;
   text-decoration: underline;
}

div .body p{
    margin-left: 25px;
    color: white;
    font-size: 16;
    font-family: Arial, Helvetica, sans-serif;
 }