/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

   * {

    
    }

body {
  background-color: black;
  color: rgb(180, 0, 160);
  font-family: "Kode Mono", monospace;
  font-family: Verdana;
  background-image: url("/PIX.DOG/redstatic.gif");
  background-size: 600px 300px;

}
@font-face {
  font-family: KodeMono;
  src: url(KodeMono.ttf);
}

#main {
  text-align: center;
	background-color:rgb(10, 10, 10);
	width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

h1 {
  position: relative;
}

.text-cycle {
  display: block;
  min-height: 1.5em;
}

.cam {
  position: absolute;
  left: 0;
  top: 10;
  /*float: left;*/
  
}
  

.truth {
  color: red;
  position: absolute;
  left: 0;
  top: 10;
  font-size: 12px;
  /*float: left;*/
  
}
        
#footer {
  width: 100%;
  max-width: 800px;
  font-size: 14px;
  }
  
 #password-section {
  margin-top: 40px;
  padding-bottom: 40px;
}

#password-section input[type="password"] {
  background: black;
  border: 1px solid rgb(180, 0, 162);
  color: rgb(180, 0, 162);
  font-family: Verdana;
  font-size: 14px;
  padding: 6px 10px;
  outline: none;
  text-align: center;
  letter-spacing: 4px;
}

#password-section input[type="password"]::placeholder {
  letter-spacing: 1px;
  color: rgb(120, 0, 108);
}

#password-section button {
  background: black;
  border: 1px solid rgb(180, 0, 162);
  color: rgb(180, 0, 162);
  font-family: Verdana;
  font-size: 14px;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 6px;
}

#password-section button:hover {
  background: rgb(180, 0, 162);
  color: black;
}

#pw-msg {
  margin-top: 10px;
  font-size: 12px;
  min-height: 18px;
}