*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html, body {
    height:100%;
    background-color: rgb(179, 190, 203);
}

.box1 { 
    grid-area: header; 
    background-color: #003366;  
    color: white;
    border: 1px solid black;
    padding: 5px;
    font-size: 30px;
    text-align: center;
}

/*box 2 is the menu*/
.box2 { 
    grid-area: menu; 
    background-color: white;  
    /* border: 1px solid black;     */
    /*height: 100vh;*/
    padding: 10px;
    font-size: 15px;
}

/*box 3 is the main written text content*/
.box3 { 
    grid-area: main; 
    background-color: white;  
    /*border: 1px solid black;    */
    padding: 10px;
    font-size: 15px;
    text-align: justify;
}

/*box 4 has the image*/
.box4 { 
    grid-area: right; 
    background-color: white;  
    /* border: 1px solid black; */
    padding: 1px;
    font-size: 5px; 
    text-align: center;
}



.box5 { 
    grid-area: footer; 
    background-color: #f1f1f1;  
    /* border: 1px solid black;     */
    padding: 10px;
    font-size: 20px;    
    text-align: center;
}    

.main-text {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.main-text-list{
    margin-top: 30px;
    margin-bottom: 10px;    

}


img{
    
    max-width:100%;
    height: auto;
}

.container {
  display: grid;
  grid-template-areas:
  'header header header header header header'
  'menu main main main right right'
  'menu footer footer footer footer footer';
  /* grid-gap: 10px; */
  background-color: white;
  border: 1px;
  padding: 10px;
  min-height: 100vh;
  word-wrap: break-word;
}




@media screen and (max-width: 600px) {
    .container {

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
        'header'
        'main'
        'right'
        'menu'
        'footer';
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        
    }
    
}