/* 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 {
  background-image: url("stars.gif");
  background-color: #000000; /* Falls back to black if image fails */
  color: white; /* Makes your text readable! */
  font-family: Verdana;
  text-align: center;
}
body {
  background-color: black;
  color: white;
  font-family: 'Courier New', monospace;
}

.space-deck {
  border: 2px solid #00f7ff;
  padding: 10px;
  margin: 20px;
  box-shadow: 0 0 15px #00f7ff;
  display: inline-block;
}
h1, h2 {
  text-shadow: 0 0 10px #00f7ff, 0 0 20px #000; /* Change color as needed */
}
.chat-container {
    background: rgba(0, 0, 0, 0.8); 
    /* This is the blueish border and glow */
    border: 2px solid #00f7ff;
    box-shadow: 0 0 15px #00f7ff; 
    width: 300px;
    height: 450px;
    
    padding: 10px;
    margin-top: 20px;
    display: inline-block;
}