/* 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 {
  margin: 0;
  padding: 0;
  background: black;
  height: 480px;
  justify-content: center;
  font-family: 'chikarego2';
  color: #f5f5f5;
  text-shadow: 1px 1px 0 #FF0000, -1px 1px 0 #FF0000, 1px -1px 0 #FF0000, -1px -1px 0 #FF0000;
  padding-top: 30px;
}

#window {
  width: 900px;
  height: 480px;
  background-color: black;
  border: 3px solid #FF2D00;
  border-radius: 10px;
  }

#window1 {
  position: absolute;
  top: 55px;
  left: 300px;
  width: 200px;
  height: 200px;
  background-color: black;
  border: 2px solid #FF2D00;
  margin: 4px;
  text-align: left;
}
#window1mess {
  float: left;
  width: 100%;
  height: 24px;
  background-color: black;
  border-bottom: 2px solid #FF2D00;
  text-align: left;
  padding-left: 2px;
}

#window2 {
  position: absolute;
  top: 150px;
  left: 760px;
  width: 400px;
  height: 200px;
  width: 400px;
  height: 200px;
  background-color: black;
  border: 2px solid #FF2D00;
  margin: 4px;
}
    .marquee-container {
      width: 100%;
      overflow: hidden;
      background: #000;
      border-bottom: 2px solid #FF2D00;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      margin: 0;
      padding: 0;
    }

    .marquee {
      display: inline-block;
      white-space: nowrap;
      color: #FFFFFF;
      padding: 4px 0;
      animation: marqueeAnim 15s linear infinite;
      text-shadow: 1px 1px 0 #FF0000, -1px 1px 0 #FF0000, 1px -1px 0 #FF0000, -1px -1px 0 #FF0000;
      font-family: 'chikarego2';
      font-size: 18px;
      margin: 0;
    }

    @keyframes marqueeAnim {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    footer {
      text-align: center;
    }
    
#hidden {
  display: none !important;
}