/* Get ready... */
html {
  box-sizing: border-box;
  font-size: 13px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* And... begin. */

:root {
  --secondary-color: #000309;
  --light-color: rgba(83,168,131,1);
  --bold-color: rgba(83,168,131,1);
  --lighter-color: rgba(149, 172, 206, 0.6);
  --dark-color: rgba(165,187,219,1);
}

#error {
  --secondary-color: #110001;
  --light-color: rgba(188,67,67,1);
  --dark-color: rgba(188,67,67,1);
}

body {
  background-color: var(--secondary-color);
  font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
  color: var(--dark-color);
}

a,
a:link,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--dark-color);
  transition: opacity 1s ease-out;
}

p {
  font-size: 24px;
  margin-top: 8px;

  color: var(--dark-color);
}

body#error p {
  font-size: 14px;
}

p#contact a {
  text-decoration: none;
  border: none;
}

p#contact a:hover {
  color: #fff;
}

p#contact {
  font-size: 15px;
  color: var(--lighter-color);
}

p span#name {
  /*opacity: 1;
  color: var(--lighter-color);*/
}

p span#cursor {
  position: relative;
  color: var(--light-color);
  display: inline-block;
  animation: blinker 1.2s step-start infinite;
  top: -2px;
}

div#ready {
  position: fixed;
  bottom: 50px;
  left: 50px;
}

div#reset {
  position: fixed;
  bottom: 50px;
  right: 50px;
}

div#reset p a {
  opacity: 0.2;
  border: 1px solid var(--dark-color);
  border-radius: 50px;
  padding: 5px 10px 5px 10px;

  font-size: 12px;
}

div#reset p a:hover {
  opacity: 1;
}

@keyframes blinker {
  50% { opacity: 0; }
}