/* Crzysurf landing page — black screen, "crzysurf" wordmark, white links.
   Faithful to the original "Deep" layout: dark wordmark with white links
   scattered on top, each revealing a red note on hover. */

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: #000;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
}

#inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Big dark "crzysurf" wordmark, centered */
.bgtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  color: #222;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* White links — the wrapper divs are positioned; the anchors inherit size */
#text-fitness,
#text-mayhem {
  position: absolute;
}

#inner a {
  color: #fff;
  text-decoration: none;
}

#inner a:link,
#inner a:visited { text-decoration: none; }

#inner a:hover { cursor: crosshair; }

/* Hover note, in red, like the original */
#inner a span { display: none; }

#inner a:hover span {
  display: block;
  position: relative;
  font-size: 14px;
  color: #ff0000;
}

/* Link placement over the wordmark */
#text-fitness {
  font-size: 40px;
  top: 50px;
  left: 30px;
}

#text-mayhem {
  font-size: 34px;
  top: 235px;
  left: 360px;
}

/* Scale the whole composition down on smaller screens so it stays centered */
@media (max-width: 720px) {
  #outer { transform: translate(-50%, -50%) scale(0.62); }
}

@media (max-width: 460px) {
  #outer { transform: translate(-50%, -50%) scale(0.42); }
}
