.windowheader {
    width: 100%;
    height: 10px;
    background-color:rgba(71, 67, 74, 0.25) ;
    position: absolute;
    top: 0;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    left: 0;
}

.closebutton {
      cursor: pointer;
      font-size: 9px;
      color: red;
      position: absolute;
      right: 10px;
}

.window {
      background-color: #077ae6;
      border: dashed black;
      width: 650px;
      border-radius: 32px;
      padding: 10px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      overflow: hidden;
}

.topbar {
      position: absolute;
      width: 100%;
      display: flex;
      justify-content: space-evenly;
      backdrop-filter: blur(10px);
      background-color: rgba(71, 67, 74, 0.25);
}

