/* *******************************
   Welding.css
   ******************************* */

div.welding {
   display:block;
   margin: 15px;
   padding: 15px;
   border: 20px solid pink;
   border-image: repeating-linear-gradient(
       -55deg,
       #FFFFFF,
       #FFFFFF 15px,
       #b33ba5 15px,
       #b33ba5 30px
     ) 20;
   break-inside: avoid;
   clear: both;
}

.welding-text {
   color: #000000;
   font-size: 1.75em;
   font-weight: bolder;
}

.welding-text::before {
   content:"Welding operations present the risk of eye injury and/or blindness. Do not watch arc. Eye protection required.";
}

.welding img {
   float: left;
   height: 75px;
   content:url("Welding.png");
   padding: 0px 10px 0px 0px;
}

div.welding::after {
    content: "";
    display: block;
    clear: both;
}