@font-face { 
  font-family: Roboto; 
  src: url('../Fonts/Roboto/Roboto-Regular.ttf'); 
}

body {background-color: #6A8CAD; font-family: Roboto, sans-serif;}

.wrapper {
    position: relative;
}

.roundedCorner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    height: auto;
    border: solid 1px #555;
    background-color: #c2cfca;
    box-shadow:  0 0 10px 5px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 10px  5px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 10px 5px rgba(0,0,0,0.6);
    border-radius:15px;
}

.mainP {
    font-size: 20px;
    text-align: center;
}

.innerBox {
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    height: auto;
    border: solid 1px #555;
    background-color: #A9A9A9;
    box-shadow:  0 0 5px 2px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 5px  2px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 5px 2px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 5px 2px rgba(0,0,0,0.6);
    border-radius:10px;
    text-align: center;
}

.innerImage {
    display: inline-block;
    margin: 2%;
    max-height: 250px;
    max-width: 28%;
    height: auto;
    aspect-ratio: 1; /*this allows the browser work out the image size and reservere that space on the page*/
    border-radius: 10px;
}