body {
  background-image: url(visual/source/liminal_bg.gif);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  color: white;
  text-shadow:
    -2px -2px 0 black,  /* top-left shadow */
     0   -2px 0 black,  /* top shadow */
     2px -2px 0 black,  /* top-right shadow */
    -2px  0   0 black,  /* left shadow */
     2px  0   0 black,  /* right shadow */
    -2px  2px 0 black,  /* bottom-left shadow */
     0    2px 0 black,  /* bottom shadow */
     2px  2px 0 black;  /* bottom-right shadow */
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 16px;
}

* {cursor: url("visual/source/cursor.png"), auto;}
a:link {color: white;}  
a:visited {color: white;}   
a:active {color: cyan;}
a:hover {color: cyan;}


/* scrollbars */
/* width */
::-webkit-scrollbar {width: 12px;}
/* Track */
::-webkit-scrollbar-track {background: black;}
/* Handle */
::-webkit-scrollbar-thumb {background: white;}
/* hover */
::-webkit-scrollbar-thumb:hover {background: lime;}


.banner {
  display: flex;
  align-items: flex-end;
  background-image: url(/visual/source/sun.gif);
  background-size: 100% 100%;
  height: 125px;
}

.site {
  max-width: 1000px;
  min-width: 1000px;
}

.box {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 8px;
}

.links {
  height: 100%;
  display: block;
}

.links button{
  display: block;
  width: 100%;
}

.site button{
  background: black;
  color: white;
  text-align: left;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 20px;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
}

.left img, .right img {
  display: block;
  height: 200px;
  margin: auto;
  border: 2px solid black;
  border-radius:100px;
}

.site h2, p, a {
  margin: 0px;
  padding: 6px;
}

.site hr {
  border: none;
  background-color: black;
  height: 2px;
}

.site ul {
  list-style-type: none;
  padding: 6px;
  margin: 0px;
}

.site li {
  padding: 0px;
}














/* for mobile */
@media only screen and (max-width: 1100px) {

.site {
  max-width: 600px;
  min-width: 600px;
}
.info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 4px;
}
}