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: 5px;
  padding-top: 5px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0px;
  border: 0;
  font:
    18px/22px calibri,
    sans-serif;
  color: white;
  vertical-align: baseline;
  text-align: justify;
  text-justify: inter-word;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
  display: block;
}
body{
  line-height: 1;
  background-color: black;
}
a{
  text-decoration: underline;
  cursor: pointer;
}
b{
  font-weight: bold;
}
i{
  font-style: italic;
}
ol, ul{
  display: block;
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
ol{
  list-style-type: decimal;
}
li{
  display: list-item;
} 
blockquote, q{
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table{
  border-collapse: collapse;
  border-spacing: 0;
}

h1{
  font-family: 'Courier New', monospace;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

h2{
  font-size: 22px;
  font-weight: bold;
}

.panel{
  border: 2px solid white;
  border-radius: 12px;
  transition: height 0.5s ease, opacity 0.5s ease; /* Add opacity transition */
}

.panel.closed{
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0; /* Fade out */
}

.console{
  font:
    12px/14px lucida console,
    monospace;
  white-space: pre;
}