.image {
	position: relative;
}

.image::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;/*calc(100% - 20px);*/
	height: calc(100% - 20px);
	border-image-source: repeating-linear-gradient(45deg, rgb(226, 111, 192),  rgb(226, 111, 192) 3px, rgba(0 0 0 / 0) 0, rgba(0 0 0 / 0) 6px);
	border-image-slice: 20;
	border-image-repeat: round;
	/* border-style: solid;
	border-width: 0px; */
	
}

p.img_center{
	text-align: center;
  }


