* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}
body {
    background-color: cadetblue;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
    background-attachment: fixed;
}

.container {
    display: flex;
    flex-flow: row wrap;
    position: relative;
    padding-left: 100px;
}


/*top section */

.topleft {
    flex: 1 0 33%;
   
    height: 60vh;
}

.topright {
    flex: 1 0 33%;
    
    height: 60vh;
}

.topmiddle {
    flex: 1 0 33%;
    
    height: 60vh;
}

/*bottom section */

.bottomleft {
    flex: 1 0 33%;
    
    height: 60vh;
}

.bottomright {
    flex: 1 0 33%;
    
    height: 60vh;
}

.bottommid {
    flex: 1 0 33%;
    
    height: 60vh;
}

/*mid row*/


.midleft {
    flex: 1 0 33%;
   
    height: 60vh;
}

.midright {
    flex: 1 0 33%;
  
    height: 60vh;
}

.midmid {
    flex: 1 0 33%;
    
    height: 60vh;
}

h1 {
    color: #222;
    text-align: center;
    text-shadow: 3px 1px orangered;
    font-size: 60px;
}
p {
    font-style: italic;
    text-align: center;
    color: orangered;
    font-size: 40px;

}

footer {
    background-color: orangered;

    padding: 30px 0px;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    }