@charset “UTF-8”;

div#abort-shield {

display: none;
position: fixed;
      pointer-events: none;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
padding: 20px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
text-align: center;
z-index: 10000;

div.abort-content {
  position: absolute;
  height: fit-content;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  img {
    text-align: center;
    filter: blur(0.25px);
  }

  p {
    //font-family: Roboto;
    font-weight: lighter;
    font-size: 200%;
    text-align: center;
  }

  * {
    color: white;
  }
      }

}