
 .myimg {
    width: 90%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 51%);
    padding: 7px;
    margin: 0px;
    background: linear-gradient(145deg, #f8f8f8, #002fa654);
    border-radius: 19px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: spinAnimation 4s ease-out forwards;
}

/* Optional: Add a border effect to make it stand out more */
.myimg::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  z-index: -1; /* Place it behind the image */
}

   .arrow_box {
	position: relative;
	background: #fff;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); 
padding:15px;
border-radius:10px;
}
.arrow_box:after, .arrow_box:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #a4a0a0;
	border-width: 30px;
	margin-top: -30px;
}
.arrow_box:before {
   border-color: rgba(194, 225, 245, 0);
    border-left-color: #a2a0a0;
    border-width: 36px;
    margin-top: -36px;
}

   