body { 
  background: #8fa1a6 url('https://www.transparenttextures.com/patterns/pinstripe.png'); 
  display: flex; 
  justify-content: center; 
  padding-top: 50px; 
  font-family: 'Verdana', sans-serif;
}

#desktop-wrapper { 
  width: 800px; 
  background: #cbd3d5; 
  border: 4px solid #fff; 
  box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
  padding: 20px; 
}

#main-frame { 
  background: #fdfaf0; 
  border: 1px solid #999; 
  padding: 30px; 
  min-height: 400px; 
  text-align: center;
}

.title { 
  font-family: 'Courier New', serif; 
  font-size: 60px; 
  font-weight: bold;
  color: #d17a7a; 
  text-shadow: 2px 2px #fff;
  margin-bottom: 20px;
}

.center-content h2 {
  color: #444;
  border-bottom: 2px solid #d17a7a;
  display: inline-block;
  padding-bottom: 5px;
}

.status-box {
  margin-top: 50px;
  background: #333;
  color: #0f0;
  padding: 10px;
  font-family: monospace;
  display: inline-block;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}