* {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}

body {
  background: url(wallpaper.png);
  margin: 0px;
}

.window {
  border: 3px solid rgba(151, 151, 151, 0.3);
  border-radius: 20px;
  position: absolute;
  background-color: rgba(94, 94, 94, 0.3);
  backdrop-filter: blur(10px);
  padding: 0px;
  width: 400px;
  height: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.windowheader {
  cursor: move;
  display: flex;
  justify-content: space-between;
}

#welcome-message img {
  width: 100px;
  height: 100px;
  border-radius: 15%;
  margin-top: 10px;
}

.closebutton {
  width: 20px;
  height: 20px;
  background-color: #ff5c5c;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  margin: 10px;
}

.windowcontent {
  background-color: white;
  margin: 4px;
  padding: 12px;
  border-radius: 12px;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.app p {
  margin: 5px 0 0 0;
  text-align: center;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 15%;
  margin: 10px;
}

textarea {
  width: 98.5%;
  resize: vertical;
  height: 200px;
  border-radius: 5px;
}

.print-file {
  border: 2px solid rgba(88, 88, 88, 0.2);
  border-radius: 5px;
  background-color: rgba(224, 224, 224, 0.8);
  margin: 5px;
  padding: 5px;
  width: fit-content;
  height: fit-content;
}

.print-button {
  border: 1px solid #2cb2ff;
  border-radius: 5px;
  background-color: #88d4ff;
  width: 100%;
  height: fit-content;
  padding: 6px;
  cursor: pointer;
}
