.Main {
    margin-right: auto;
    margin-left: auto;
    background-color: #DDDDDD;
    font-family:Arial,Helvetica,sans-serif;
}
.DivElements {
    margin-right: auto;
    margin-left: auto;
    display: block;
   }

.myborder {   border-width: 1px;   border-color: lightgrey;   border-style: solid; cursor: pointer;} 

 .Stage {
    margin-right: auto;
    margin-left: auto;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}


.FireStyle {
   
    background:#fd2424;
    border-width: 0.5;
    border-style: solid;
    border-color:#fd2424;
}
.panel-footer {
    padding: 0 15px;
    border: none;
    text-align: center;
    background-color: #fff;
}
.card-footer {
    padding: 0 15px;
    border: none;
    text-align: center;
    background-color: #fff;
}

.oval-thought {
  position: relative;
  width: 450px; /* Increased width */
  padding: 50px 40px;
  margin: 1em auto 80px;
  text-align: center;
  color: #fff;
  background: #075698;
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
  background: -moz-linear-gradient(#2e88c4, #075698);
  background: -o-linear-gradient(#2e88c4, #075698);
  background: linear-gradient(#2e88c4, #075698);
  -webkit-border-top-left-radius: 220px 120px;
  -webkit-border-top-right-radius: 220px 120px;
  -webkit-border-bottom-right-radius: 220px 120px;
  -webkit-border-bottom-left-radius: 220px 120px;
  -moz-border-radius: 220px / 120px;
  border-radius: 220px / 120px;
  display: flex; /* Use flexbox for layout */
  flex-direction: row; /* Arrange text and image in a row */
  align-items: center; /* Vertically align items */
  justify-content: space-around; /* Distribute space evenly */
}

.oval-thought p {
  font-size: 1.25em;
  max-width: 60%; /* Limit text width */
}

.oval-thought img {
  max-width: 65%; /* Limit image width */
  height: auto;
  margin-left: 10px; /* Add some space between text and image */
}

/* creates the larger circle */
.oval-thought:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50px;
  width: 30px;
  height: 30px;
  background: #075698;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* creates the smaller circle */
.oval-thought:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 15px;
  height: 15px;
  background: #075698;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.oval-speech {
  position: relative;
  width: 450px; /* Increased width */
  padding: 50px 40px;
  margin: 1em auto 50px;
  text-align: center;
  color: #fff;
  background: #5a8f00;
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
  background: -moz-linear-gradient(#b8db29, #5a8f00);
  background: -o-linear-gradient(#b8db29, #5a8f00);
  background: linear-gradient(#b8db29, #5a8f00);
  -webkit-border-top-left-radius: 220px 120px;
  -webkit-border-top-right-radius: 220px 120px;
  -webkit-border-bottom-right-radius: 220px 120px;
  -webkit-border-bottom-left-radius: 220px 120px;
  -moz-border-radius: 220px / 120px;
  border-radius: 220px / 120px;
  display: flex; /* Use flexbox for layout */
  flex-direction: row; /* Arrange text and image in a row */
  align-items: center; /* Vertically align items */
  justify-content: space-around; /* Distribute space evenly */
}

.oval-speech p {
  font-size: 1.25em;
  max-width: 60%; /* Limit text width */
}

.oval-speech img {
  max-width: 35%; /* Limit image width */
  height: auto;
  margin-left: 10px; /* Add some space between text and image */
}

/* creates part of the curve */
.oval-speech:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -30px;
  right: 50%;
  height: 30px;
  border-right: 60px solid #5a8f00;
  background: #5a8f00;
  -webkit-border-bottom-right-radius: 80px 50px;
  -moz-border-radius-bottomright: 80px 50px;
  border-bottom-right-radius: 80px 50px;
  -webkit-transform: translate(0, -2px);
  -moz-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  -o-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

/* creates part of the curved pointy bit */
.oval-speech:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -30px;
  right: 50%;
  width: 60px;
  height: 30px;
  background: #fff;
  -webkit-border-bottom-right-radius: 40px 50px;
  -moz-border-radius-bottomright: 40px 50px;
  border-bottom-right-radius: 40px 50px;
  -webkit-transform: translate(-30px, -2px);
  -moz-transform: translate(-30px, -2px);
  -ms-transform: translate(-30px, -2px);
  -o-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}