@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {

  background-image: url('darknightsky.png'); /* Add this */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  font-family: 'VT323', monospace;
  color: white;

  background-color: hsl(286, 100%, 89%);
  font-family: 'VT323', monospace;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.window {
  background: #ffffff;
  border: 2px solid #000;
  box-shadow: 6px 6px #1d0145;
  width: 450px;
  color: #000000;
}

.title-bar {
  background: linear-gradient(to right, hsl(294, 52%, 49%), #f3abf5);
  color: rgb(1, 47, 35);
  padding: 0.2rem 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.title-bar .controls .btn {
  background-color: #ccc;
  color: black;
  border: 1px solid #333;
  margin-left: 4px;
  padding: 0 6px;
  cursor: pointer;
}

.window-body {
  padding: 1rem;
}

.desktop-links {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.desktop-links li {
  margin-bottom: 0.5rem;
}

.desktop-links a {
  text-decoration: none;
  color: #000;
  background: #e0e0e0;
  padding: 0.2rem 0.5rem;
  border: 2px outset #ccc;
  display: inline-block;
}
