html, body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	
	background: #ffffff;
	color: white;
}

html, body, canvas {
	touch-action: none;
	touch-action-delay: none;
}

#notSupportedWrap {
	margin: 2em auto 1em auto;
	width: 75%;
	max-width: 45em;
	border: 2px solid #aaa;
	border-radius: 1em;
	padding: 2em;
	background-color: #f0f0f0;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	color: black;
}

#notSupportedTitle {
	font-size: 1.8em;
}

.notSupportedMessage {
	font-size: 1.2em;
}

.notSupportedMessage em {
	color: #888;
}





.exit-btn {
    display: inline;
    /* width: 60px; */
    /* height: 30px; */
    position: absolute;
    right: 19px;
    top: 23px;
    background: repeating-linear-gradient(
      45deg,
      #f24423,
      #f24423 5px,
      #f24423 5px,
      #f24423 10px
    );
    /* box-shadow: -1px 5px 0 #b76113, 0px 9px 1px 1px rgb(0 0 0 / 30%), 0 10px 0 5px #75421f, 0 12px 0 5px #8a542b, 0 15px 0 5px #593116, 0 15px 1px 6px rgb(0 0 0 / 30%); */
    border: 3px solid rgba(205, 102, 0, 0.5);
    text-shadow: -3px 2px 1px #e78700, -2px 2px 1px #e78700,
      2px -2px 1px #e78700, -2px -2px 1px #e78700, 0px 2px 1px #e78700,
      0px -2px 1px #e78700, 0px 4px 1px #c96100, 2px 4px 1px #c96100,
      -2px 4px 1px #c96100;
    cursor: pointer;
    text-decoration: none !important;
    outline: none !important;
    /* font-family: 'Carter One', sans-serif; */
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0.3em;
    padding: 2px 32px;
    order-top: 3px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    border-radius: 5px;
    padding: 8px 15px 10px;
    font-weight: bolder;
    border: none;
  }

  .modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    z-index: 999999;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s,
      transform 0.25s;
  }

  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0a0909;
    padding: 1rem 1.5rem;
    width: 24rem;
    font-size: 13px;
    border-radius: 0.5rem;
    color: #fff;
    text-align: center;
    font-family: "Courier New", Courier, monospace;
  }
  .modal-content h1 {
    padding-bottom: 40px;
  }
  .yes-button {
    background-color: #f24423;
    color: #fff;
  }
  .no-button {
    color: #000000;
  }
  .modal-btn {
    width: 70px;
    height: 30px;
    font-size: 18px;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .modal-btn:hover {
    cursor: pointer;
    color: #fff;
    border: none;
  }

  .close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: #f24423;
  }
  .close-button:hover {
    background-color: #f24423;
  }
  .show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  }