@font-face {
  font-family: "Roboto Mono";
  src:
    local("Roboto Mono Regular"),
    local("RobotoMono-Regular"),
    url("fonts/RobotoMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src:
    local("Roboto Mono Bold"),
    local("RobotoMono-Bold"),
    url("fonts/RobotoMono-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  color: #00cc00;
  -webkit-text-stroke: 4px #000;
  paint-order: stroke fill;
}


a {
  text-decoration: none;
}


html,
body {
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.5;
  min-width: 330px;
  -webkit-text-size-adjust: 100%;
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #010101;
}

#content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  z-index: 2;
}


.col-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  flex-grow: 1;
  padding: 1.4rem;
}

.ncol-1 {
  flex: 80%;
  align-items: end;
  align-content: end;
}



.bg-col-2 {
  margin-left: auto;
}

.bg-col-2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}


#rb {
  position: relative;
  display: block;
  height: 200px;
  width: 150px;
}


#rb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#rb .templex-image {
  opacity: 0;
}

#rb:hover .rabbit-hole-image {
  opacity: 0;
}

#rb:hover .templex-image {
  opacity: 1;
}
