.window-container {
  position: absolute;
  left: max(
    calc((100vw - max(133vh, 650px)) / 2 /*Left point of div.desktop*/ + 160px),
    160px
  );
  top: min(160px, 20%);
  width: calc(max(min(133vh, 100vw), 650px) - 160px * 2);

  border: solid 3px white;
  border-right-color: #808080;
  border-bottom-color: #808080;

  box-shadow: 1px 1px 0 1px black;

  background-color: white;
}

.title-bar {
  display: flex;
  width: 100%;
  height: 32px;
  background-color: darkblue;
}

.title-bar-title {
  flex: 1;
  vertical-align: top;
  padding: 5px;
}

.title-bar-title p {
  display: inline;
  color: white;
  line-height: 22px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}

.title-bar-title img {
  height: 20px;
  margin: 2px;
}

.title-bar-right {
  width: 120px;
}

.title-bar-right button {
  float: right;
}

.window-container embed {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 400px;
}
