/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   

:root {
  --bg-color: black;
  --color: #06ff00;
}


@font-face {
  font-family: 'Toshiba';
  src:url('/Toshiba.woff') format('woff');
}


@media only screen and (max-width: 800px) {
    body {
        background-color: var(--bg-color);
        color: var(--color);
        font-family: 'Toshiba';
        margin: 20px;
        padding: 20px;
        font-size: 15px;
        overflow: auto;
    }
    
    .responsive {
    width: 49%;
    margin: 6px 0;
    }
    
    .border {
      border: 5px solid var(--color);
      height: 100%; 
      width: 100%;
      box-sizing: border-box; 
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
}
}

.gallery {
  margin: 5px;
  border: 1px solid var(--color);
  float: left;
}

.gallery:hover {
  border: 1px dotted var(--color);
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.25%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

body {
  background-color: var(--bg-color);
  color: var(--color);
  font-family: 'Toshiba';
  margin: 20px;
  padding: 20px;
  font-size: 20px;
  overflow: auto;
}

.border {
  border: 20px solid var(--color);
  height: 100%; 
  width: 100%;
  box-sizing: border-box; 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.text {
  float: left;
  width: 100%;
}
  
a.reg, a.reg:link, a.reg:visited {
  text-decoration: underline;
  color: var(--color);
}

a.reg:hover, a.reg:active {
  text-decoration: none;
  color: var(--color);
}

a.asciibottom, a.asciibottom:link, a.asciibottom:visited {
  text-decoration: underline;
  color: var(--color);
}

a.asciibottom:hover, a.asciibottom:active {
  text-decoration: none;
  color: var(--color);
}

a.asciitop, a.asciitop:link, a.asciitop:visited {
  text-decoration: none;
  color: var(--color);
}

a.asciitop:hover, a.asciitop:active {
  text-decoration: none;
  color: var(--color);
}

hr {
  border: 2px solid var(--color);
}

fieldset {
  border: 1px solid var(--color, currentColor);
  background-color: var(--bg-color);
}
  
input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--bg-color);
  width: 15px;
  height: 15px;
  border: 1px solid var(--color, currentColor);
}

input[type="radio"]:checked {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color, currentColor);
  width: 15px;
  height: 15px;
  border: 1px solid var(--color, currentColor);
}

:root:has(#light:checked) {
  --bg-color: #bfbfbf;
  --color: #080808;
}

:root:has(#dark:checked) {
  --bg-color: #080808;
  --color: #bfbfbf;
}
  
