@font-face {
    font-family: Pixelcastle; src:url(fonte/Pixelcastle-Regular.otf);
} 

html {
    cursor: url("https://kiunlo.neocities.org/cursors/misc/skull_cursor.png"), auto;
}

body {
    background: #faf7f7; /* fundo clarinho estilo status.cafe */
    font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #2c2c2c;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

#layout {
    margin: 50px auto;
    width: 800px;
}

#banner {
    width: 800px;
    float: left;
    margin: 0 auto;
}

#bannertextorimage {
    height: 70px;
    line-height: 70px;
    background: transparent;
    border-radius: 8px;
    margin: 5px;
}

.titulo {
    font-family: Pixelcastle, Georgia, serif;
    font-size: 45px;
    text-align: center;
    color: #8b1c1c;
}

#navigationbar {
    width: 800px;
    float: left;
    margin: 0 auto;
}

#navigation {
    height: 25px;
    line-height: 25px;
    background: transparent;
    margin: 5px;
    text-align: center;
}

#navigation a:link,
#navigation a:visited,
#navigation a:active {
    font: 12px monospace;
    text-transform: uppercase;
    padding: 6px 10px;
    margin-right: 10px;
    background: #ffffff;
    border: 1px solid #e0dada;
    border-radius: 8px;
    text-decoration: none;
    color: #8b1c1c;
    font-weight: bold;
}

#navigation a:hover {
    color: #4e0c0c;
}

#left {
    width: 200px;
    float: left;
    margin: 0 auto;
}

#leftbox {
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e0dada;
    margin: 5px 10px 10px 0;
}

#right {
    width: 200px;
    float: left;
    margin: 0 auto;
}

#rightbox {
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e0dada;
    margin: 5px 0px 10px 10px;
}

#content {
    width: 400px;
    float: left;
    margin: 0 auto;
    text-align: justify;
}

#contentbox {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0dada;
    margin: 5px 0 10px 0;
    padding: 5px;
}

/* =========================
   Titles
========================= */
.small-title {
    color: #8b1c1c;
    text-transform: uppercase;
    font: bold 12px Arial;
    margin-bottom: 8px;
    padding: 3px 6px;
    background: #fff0f0;
    border-radius: 4px;
}

.big-title {
    color: #8b1c1c;
    text-transform: uppercase;
    font: bold 16px Arial;
    margin-bottom: 8px;
    padding: 4px 6px;
    background: #fad8db;
    border-radius: 4px;
}

#Table {
    border-collapse: collapse;
    padding: 5px;
    width: 380px;
}

#Table th {
    padding: 0;
    background: #fce4e4;
    color: #8b1c1c;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 50%;
    text-align: left;
    font: 12px Arial;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#Table td {
    text-align: left;
    padding: 5px;
    background: #ffffff;
    color: #2c2c2c;
    width: 50%;
    vertical-align: top;
    border: 1px solid #e0dada;
}

#footer {
    width: auto;
    clear: both;
    justify-content: center;
    
}

#footerbox {
    height: 20px;
    background: transparent;
    text-align: center;
    padding-top: 5px;
    color: #666;
}

a:link, a:visited {
    color: #8b1c1c;
    text-decoration: none;
}

a:hover {
    color: #4e0c0c;
    text-decoration: none;
    cursor: url("https://kiunlo.neocities.org/cursors/pride/bi_cursor.png"), auto;
}

::-webkit-scrollbar-thumb {
    background-color: #8b1c1c;  
    border-radius: 6px;
    border: 1px solid #e0dada;
}

::-webkit-scrollbar {
    width: 7px; 
    height: 4px; 
    background: #faf7f7;
}

textarea {
    font-size: 10px;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.botoes img {
    vertical-align: middle;
}


/* ------------------------- DARK MODE */

#darkmode-toggle {
  background: #ffffff;
  color: #8b1c1c;
  border: 1px solid #e0dada;
  border-radius: 6px;
  padding: 5px 10px;
  font: 12px monospace;
  cursor: pointer;
  margin: 5px;
  transition: all 0.3s ease;
}

#darkmode-toggle:hover {
  background: #8b1c1c;
  color: #ffffff;
}

body.dark-mode #darkmode-toggle {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #555;
}

body.dark-mode #darkmode-toggle:hover {
  background: #ffffff;
  color: #8b1c1c;
}

body.dark-mode {
  background: #1c1c1c;
  color: #eaeaea;
}

body.dark-mode #bannertextorimage {
    text-shadow: 2px 1px #3f0d0d;
}

body.dark-mode .titulo {
    color: #8b1c1c;    
}

body.dark-mode #contentbox,
body.dark-mode #leftbox,
body.dark-mode #rightbox {
  background: #2c2c2c;
  border: 1px solid #444;
  color: #e0e0e0;
}

body.dark-mode #navigation a:link,
body.dark-mode #navigation a:visited,
body.dark-mode #navigation a:active {
    background: #3a0c0c;
    border: 1px solid #290202;
    color: #fff;
}

body.dark-mode #navigation a:hover {
    color: #ffdada;
}

/* TITLES DARK MODE */
body.dark-mode .small-title {
    background: #423f3f; 
    color: #ffffff;    
}

body.dark-mode .big-title {
    background: #1d1c1c;
    color: #ffffff;
}

body.dark-mode a:link,
body.dark-mode a:visited {
  color: #ff9999;
}

body.dark-mode a:hover {
  color: #ffcccc;
}

/*barrinha*/
body.dark-mode ::-webkit-scrollbar-thumb {
  background-color: #555;
  border: 1px solid #222;
}

body.dark-mode ::-webkit-scrollbar {
  background: #1c1c1c;
}