body {
 background-color: lightblue;
}
h1 {
  color: dodgerblue;
  text-decoration: underline;
  text-align: center;
  font-size: 400%;
}
h2 {
 color: white;
 font-size: 100%;
 text-align: center;
 text-decoration: bold;
}
p1 {
 font-size: 80%; 
 color: black;
}
  .flex-container{
   display: flex;
   background-color: DodgerBlue;
   padding: 1rem;
   justify-content: space-evenly;
   border-radius: 5px;
   border: white;
  }
  .flex-container > div {
   background-color: grey; 
   margin: 10px;
   padding: 30px;
   font-size: 30px;
   border-radius: 25px;
   color: white;
   width: 250%;
  }










































