@media (min-width: 30em) {
    .row { width: 100%; display: table; table-layout: fixed; empty-cells:hide;}
    .col { display: table-cell; }
}

@font-face {
    font-family: "HelvetiPixel";
    src: url("HelvetiPixel.ttf") format("truetype");
}

@font-face {
    font-family: "PixelFraktur";
    src: url("PixelFraktur.ttf") format("truetype");
}

body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: "HelvetiPixel", "Futura", sans-serif;
}

.clip{
  overflow-y: hidden;
}

h1 {
  font-family: "PixelFraktur", "Baskerville", serif;
  text-align: center;
}

.desc {
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 2em;
  height: 5em;
}

.talk {
  background-color: black;
  color: white;
  border: 1px double white;
  border-width: 1px;
  padding: 1em;
  margin: 1em;
  text-align: left;
}

.talk.left {
  margin-left: 2em;
  margin-right: 5em;
}

.talk.right {
  margin-left: 5em;
  margin-right: 2em;
}

.scroll {
  display: inline-block;
  overflow-y: auto;
}

.scroll.small {
  height: 6em;
  width: 20em;
}

.scroll.big {
  height: 12em;
  width: 20em;
}

::-webkit-scrollbar-track { 
    background-color: black;
}

::-webkit-scrollbar-thumb { 
    background-color: black;
}

::-webkit-scrollbar-thumb:hover { 
    opacity: 0.5;
}

.profile {
 width: 15%;
 margin: 1em;
}

.name {
  position: absolute;
  margin-top: -2%;
  text-align: center;
  font-family: "PixelFraktur", "Baskerville", serif;
  font-size: 1.5em;
  color: white;
  text-shadow: -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 1px 2px 0 #000;
  z-index: 1;
}

@keyframes rzoom {
  0% {transform: scale(1,1);}
  50% {transform: scale(1.25,1.25);}
  100% {transform: scale(1,1);}
}

.name:hover {
  animation: rzoom 3s ease infinite;
}

.flash {
  animation: flash 3s ease infinite;
}

@keyframes flash {
  50% {opacity: 0.5}
}

.link {
  font-weight: bold;
  cursor:pointer;
}

.link:hover {
  opacity: 0.5;
  cursor:pointer;
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
}

a:active {
  color: white;
  text-decoration: none;
}

button {
  background-color: black;
  border: 1px double white;
  padding: .25em .5em .25em .5em;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: "HelvetiPixel", "Futura", sans-serif;
  font-size: 1em;
  margin-left: 1em;
}

button:hover {
  opacity: 0.5;
  cursor:pointer;
}

.interact {
  position: absolute;
  z-index: 20;
}

.interact:hover {
	cursor: move;
}

li {
  margin-top: 3px;
}



