@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background-color: #000000;
  color: #ff69b4;
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  background-image: url('images/pink clouds.png.png');
  background-size: cover;          
  background-position: center;     
  background-repeat: no-repeat;    
}

#container {
  width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #111;
  border: 3px dashed #FFFFFF;
  box-shadow: 0 0 20px #ff00ff;
}

#header {
  text-align: center;
  border-bottom: 1px solid #ff00ff;
  margin-bottom: 20px;
}

#header h1 {
  font-size: 36px;
  text-shadow: 0 0 8px #ff00ff;
}

.tagline {
  font-size: 14px;
  color: #FFFFFF;
}

#nav {
  text-align: center;
  margin-bottom: 20px;
}

#nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

#nav a:hover {
  text-shadow: 0 0 10px #ff00ff;
}

#content {
  background-color: #1a1a1a;
  padding: 15px;
  border: 2px groove #ff69b4;
}

#content h2 {
  color: #FFFFFF;
  text-shadow: 0 0 5px #FFFFFF;
}

#content a {
  color: #ff69b4;
  text-decoration: underline;
}

#footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #999;
}

/* Use class instead of <blink> element */
.blink {
  animation: blinker 0.6s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

#editor {
  margin-top: 20px;
}

#docArea {
  width: 100%;
  height: 400px;
  background-color: #000000;
  color: #ff69b4;
  border: 2px solid #ff69b4;
  padding: 10px;
  font-size: 16px;
  font-family: 'Share Tech Mono', monospace;
  resize: vertical;
  box-sizing: border-box;
}

#wordCount {
  margin-top: 10px;
  font-size: 14px;
  color: #ff69b4;
}
#main {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#sidebar {
  width: 200px;
}

#editor {
  flex: 1;
}

#docArea {
  width: 100%;
  height: 400px;
  background-color: #000000;
  color: #ff69b4;
  border: 2px solid #ff69b4;
  padding: 10px;
  font-size: 16px;
  font-family: 'Share Tech Mono', monospace;
  resize: vertical;
  box-sizing: border-box;
}

#wordCount {
  margin-top: 10px;
  font-size: 14px;
  color: #ff69b4;
}