body 
{
background-color: #22a4f3; 
}
.myDiv {
  border: 5px outset red;
  background-color: #2089cf;
  text-align: center;
border-radius: 25px;
  border: 10px solid #0055a1;
  padding: 20px; 
 margin-left: auto;
  margin-right: auto;
 width: 1050px;
}
p
{
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
}
h2 {
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
}
img {
  transition: transform .2s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
img:hover {
transform: scale(1.5);
}