@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*END MEYER RESET */
body {
  margin: 0;
  overflow: hidden;
  background: black;
  font-family: "Space Grotesk", sans-serif;
}

#tickerField {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  color:rgb(201, 201, 201);
  pointer-events: none;
  transform-origin: center;
}

.track-inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0%); }
  to { transform: translateX(-100%); }
}




#modifierPanel {
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: 180px;
  padding: 12px;

  background: #000;
  border: 1px solid white;

  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.mod-title {
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

#modifierPanel label {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  gap: 6px;
}


#bgPicker {
  appearance: none;
  -webkit-appearance: none;

  width: 28px;
  height: 28px;

  border: 1px solid white;
  background: var(--picker-color, #000);

  opacity: 0.6;
  cursor: pointer;

  transition: opacity 0.2s ease;
}

#bgPicker:hover {
  opacity: 0.85;
}

#bgPicker:active,
#bgPicker:focus {
  opacity: 1;
}

#bgPicker::-webkit-color-swatch-wrapper {
  padding: 0;
}

#bgPicker::-webkit-color-swatch {
  border: none;
}

#modifierPanel input[type="range"] {
  width: 100%;
}
#textPicker {
  appearance: none;
  -webkit-appearance: none;

  width: 28px;
  height: 28px;

  border: 1px solid white;
  background: var(--text-picker-color, #c9c9c9);

  opacity: 0.6;
  cursor: pointer;

  transition: opacity 0.2s ease;
}

#textPicker:hover {
  opacity: 0.85;
}

#textPicker:active,
#textPicker:focus {
  opacity: 1;
}

#textPicker::-webkit-color-swatch-wrapper {
  padding: 0;
}

#textPicker::-webkit-color-swatch {
  border: none;
}

#return{
  position: fixed;
  left: 12px;
  bottom: 12px;
  width: auto;
  padding: 12px;
  
  background: #000;
  border: 1px solid white;

}

sub3{
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: .5rem;
}



#p
{
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

a:visited {
    color: white;
}
