/* *******************************
   FOD.css
   ******************************* */

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

.fod-text {
   color: #000000;
   font-size: 1.25em;
   font-weight: bolder;
}

.fod-text::before {
   content:"Flight hardware is sensitive to Foreign Object Debris (FOD). Access to flight hardware is limited to qualified, specially trained personnel. All others must be escorted by qualified personnel within 2 meters of flight hardware.";
}

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

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