/* какой эдакий silly дебил этот я, забыл это вписать в html и нихуя не работало эххх бля */
body {
  background: #2986cc repeat;
  color: black;
  font-family: "MS Sans Serif", "Tahoma", "Geneva", sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.window {
  background-color: #c0c0c0;
  border: 2px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: inset 1px 1px #808080, inset -1px -1px #dfdfdf;
  padding: 10px 15px 20px;
  width: 600px;
  margin: 20px auto;
  text-align: left;
}

.title-bar {
  background: linear-gradient(to right, #000080, #1084d0);
  color: white;
  font-weight: bold;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 1px 1px #000080, inset -1px -1px #1084d0;
}

.title-bar-text {
  font-size: 13px;
}

.title-bar-controls {
  display: flex;
  gap: 2px;
}

.title-bar-controls button {
  width: 16px;
  height: 14px;
  background-color: #c0c0c0;
  border: 2px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  cursor: pointer;
}
.title-bar-controls button:active {
  border: 2px solid #404040;
  border-right-color: #fff;
  border-bottom-color: #fff;
}


h1, h2, h3 {
  margin: 10px 0;
}

a {
  color: #0000ee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

img {
  margin: 8px 0;
  border: 2px solid #808080;
  box-shadow: 1px 1px #fff, -1px -1px #404040;
}

footer {
  text-align: center;
  color: #000;
  background-color: #c0c0c0;
  padding: 5px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  width: 600px;
  margin: 10px auto;
}