/* Inspiration + CSS "intro" credits: bones.sesh.team */
/* Sources used list:
    - spinbot.pw (video tag, #center),
    - http://static.tumblr.com/zlim8hm/29yn6561z/force-cursor.png (cursor),
    - https://github.com/tsenart/sight/blob/master/fonts/Consolas.ttf (font),
    - https://emerald.gg/images/dot.png (2x2 dot, inspiration and pattern CSS)
*/

html {
  cursor: url("../others/cursor.png"), default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #e4e3e3;
  text-decoration: none;
}

body,
input {
  color: #e4e3e3;
  background-color: #000;
}

@font-face {
  font-family: Copperplate;
  src: url("../others/Technotot.otf.html");
}

* {
  padding: 0;
  margin: 0;
  font-family: Copperplate, sans-serif;
  size: 20p;
}

body {
  overflow-x: hidden;
}

input {
  outline: 0;
  border: none;
}

td {
  padding: 3px;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-style: dashed;
}

pre {
  font-size: 1.15em;
}

.box,
body,
input {
  background-color: #000;
}

.box {
  padding: 15px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.top-right {
  position: fixed; /* or absolute */
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.container {
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#brand {
  margin-left: 0.65pc;
}

.marquee-container {
  position: absolute;
  width: 100%;
  bottom: 10%;
  text-align: center;
  margin-bottom: 150px;
  font-size: 22px;
}

#marquee {
  width: 420px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -4.5px;
  font-size: 22px;
}

.emoticon {
  vertical-align: middle;
}

.main {
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
}

#pattern {
  background: transparent url("../others/dot.png") repeat 0 0;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  opacity: 2;
}

#pattern,
#background {
  position: absolute;
  width: 100%;
  height: 100%;
}

#background {
  z-index: -2;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 135%;
  min-height: 110%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  overflow: hidden;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.footer {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

::-webkit-scrollbar {
  width: 0;
}

#rainbow {
  background-color: blue;
  float: top;
  max-width: 100%;
  height: 3px;
  border: 0px solid white;
  -webkit-animation-name: example; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0% {
    background-color: red;
  }
  12% {
    background-color: orange;
  }
  25% {
    background-color: yellow;
  }
  37% {
    background-color: Chartreuse;
  }
  50% {
    background-color: cyan;
  }
  62% {
    background-color: blue;
  }
  75% {
    background-color: DarkOrchid;
  }
  78% {
    background-color: DeepPink;
  }
  100% {
    background-color: red;
  }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes example {
  0% {
    background-color: red;
  }
  12% {
    background-color: orange;
  }
  25% {
    background-color: yellow;
  }
  37% {
    background-color: Chartreuse;
  }
  50% {
    background-color: cyan;
  }
  62% {
    background-color: blue;
  }
  75% {
    background-color: DarkOrchid;
  }
  78% {
    background-color: DeepPink;
  }
  100% {
    background-color: red;
  }
}

h1 {
  font-size: 17vh;
}