@import "base.css";

:root {
  --Col1: black;
  --Col2: white;
  --Col3: yellow;
  --Col4: orange;
  --Col5: navy;
  --Col6: blue;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.delta-box {
      border: 10px solid transparent;
      padding: 20px;
      border-image: url(/images/borders/border-delta-orig.png);
      border-image-slice: 12 fill;
      border-image-repeat: round;
      border-image-width: 2;
      text-shadow: 1px 1px navy;
      color: white;
      
}
.delta-box::selection {
  background-color: navy;
  color: white;
  text-shadow: 1px 1px blue;
}

.delta-box-txt::before {
  content: "* "
}

.delta-button {
      border: 3px solid yellow;
      padding: 10px;
      background-color: black;
      color: yellow;
      font-size: 24px;
      cursor: pointer;
}
.delta-button:hover {
  border-color: orange;
  color: orange
}
.delta-button:active {
  border-color: yellow;
  color: yellow;
}
    
.delta-list {
  list-style-type: "* "
}

body {
  font-family:determination mono;
  font-weight: normal;
  color: white;
  image-rendering: pixelated;
  background-color: black
}

button {
  font-family:determination mono;
}
hr {
  border-color:white;
  border-style: solid;
  border-width: 2px;
}

h1 {
  font-size: 48px;
  font-weight: normal;
  text-decoration: underline white solid;
}
h2 {
  font-size: 36px;
  font-weight: normal;
  text-decoration: underline white solid;
}
h3 {
  font-size: 32px;
  font-weight: normal;
  text-decoration: underline white solid;
}
h4 {
  font-size: 24px;
  font-weight: normal;
  text-decoration: underline white solid;
}
h5 {
  font-size: 20px;
  font-weight: normal;
  text-decoration: underline white solid;
}
h6 {
  font-size: 18px;
  font-weight: normal;
  text-decoration: underline white solid;
}
p {
  font-size: 16px
}