/*Tee Hee!*/




/*current page outline*/
.boxed-menu li .current {
  outline: 2px dashed #f98b13;
}

.img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

textarea {
  resize: none;
  width: 100%;
  box-sizing: border-box;
}

.log-display {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.log-wrapper {
  border: 2px solid #f98b13;
  background-color: #1d1410;
  padding: 20px;
  max-width: 800px;
  margin: 40px 0;
  padding-left: 20px;
  box-shadow: 0 0 20px #1d1410;
  box-sizing: border-box;
}

input[name="name"] {
  width: calc(100% - 13px);
}

.terminal-log {
  margin-top: 20px;
  background: #1d1410;
  padding: 10px;
  border: 2px solid #f98b13;
  max-height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
}


body {

  /*LETTERINGS*/
  font-size: 14px;
  font-weight: 400;
  color: #f98b13;
  font-family:  monospace, "Lucida Console",  "Courier New", courier, arial, "Times new roman";
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  
 
#nowPlaying {
  width: 40vw;
  overflow: hidden;
  white-space: nowrap;
  animation: scroll-text 12s linear infinite;
}

@keyframes scroll-text {
  0% { text-indent: 0; }
  100% { text-indent: -100%; }
}

 
/*TITLE BORDERS*/
 h1 {
  background-color: #f98b13;
  color: #1d1410;
  text-align: center;
  padding: 10px 0;
  margin: 0;
  font-family: monospace;
  font-weight: bold;
  font-size: 2em;
}


  background-color: #1d1410;

/*comic select */

fieldset {
  border: 2px solid #f98b13;
  background-color: #1d1410;
  color: #f98b13;
  padding: 10px;
  margin: 20px 0;
  font-family:  monospace, "Lucida Console",  "Courier New", courier, arial, "Times new roman";
}

legend {
  border-style: solid;

  color: #f98b13;
  font-family:  monospace, "Lucida Console",  "Courier New", courier, arial, "Times new roman";
}



.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* puts the links in a row */
  justify-content: left; /* lefts the menu */
  gap: 30px; /* space between items */
}

.menu li a {
  color: #f98b13;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border: 1px solid transparent;
  transition: 0;
}

.menu li a:hover {
  color: #1d1410;
  border: 1px solid #f98b13;
  background-color: #f98b13;
}


/*dropdown + select*/

select {
  background-color: #1d1410;   /* dark background */
  color: #f98b13;              /* orange text */
  border: 2px solid #f98b13;   /* matches your theme */
  font-family: monospace;
  padding: 4px 8px;
}

select option {
  background-color: #1d1410;
  color: #f98b13;
}


}