* {
  box-sizing: border-box;
}
body{
  font-family: 'DotGothic16', sans-serif;
  background-image: url('https://i.postimg.cc/QxWZT62h/wp2807995.jpg');
  background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  color: white;
  cursor: url('https://i.postimg.cc/fLpYK3Ls/cursor3.png'), auto;
}
::selection{
  background-color: #00838F;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  align-items: center; 
  justify-content: center;
}

.content {
  display: grid;
  column-gap: 30px;
  grid-template-columns: 200px 600px;
}

.first {
  position: relative;
  height: 300px;
}
.first a{
  color: gray;
  text-decoration: none;
}
.first a:hover{
  color: white;
  text-decoration: underline;
}
.second {
  background-color: lightgray;
  border-top: solid lightgray;
  border-left: solid lightgray;
  border-bottom: solid gray;
  border-right: solid gray;
}

.item.window {
  width: 200px;
  position: absolute; 
  z-index: 9;
}

.title-bar {
  cursor: move;
  display: flex;
  justify-content: center;
}
.status-bar img{
  width: 10px;
}