body {
  /* background deets */
  background-image: url(visual/source/bg.gif);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
    
  /*font*/
  text-transform: lowercase;
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 24px;
  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 */
  
  /* arrangement */
  display: flex;
  justify-content: center;
}

/* cursor */
* {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;}

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

.site button{
  margin: 4px;
  background: black;
  color: white;
  text-align: left;
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-transform: uppercase;
}

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

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

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

.site li {
  padding: 0px;
}

.brain {
  display: flex;
  align-items: flex-end;
  background-image: url(/visual/source/leaf.gif);
  background-size: 50% 100%;
  height: 60px;
}

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

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

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





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




















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

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

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

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

}