@font-face {
  font-family: "Raleway";
  src: url("/fonts/Raleway.ttf") format("truetype");
}

.window {
  user-select: none;
  display: flex;
  flex-direction: column;
  font-family: "Raleway";
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
  width: 960px;
  height: 540px;
  margin: 0 10px;
  overflow: hidden;
}

.window .title-bar {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #0001;
  padding: 10px;
}

.window .title-bar .buttons {
  position: absolute;
  display: flex;
  gap: 10px;
  left: 10px;
}

.window .title-bar .buttons .button {
  display: block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.window .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.25rem;
  text-align: center;
  padding: 20px;
}
