body {
    font-family: 'Arial';
    background: url("/media/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

button {
    background-color: #dadced;
    color: black;
    border: 1px solid black;
    cursor: pointer;
}

.window {
    border: 1px solid black;
    position: absolute;
    width: 200px; 
}
.window * {
    margin: 0;
}

.titleBar {
    background: linear-gradient(0deg,rgba(13, 0, 158, 0.70) 0%, rgba(91, 179, 199, 0.70) 100%);
    backdrop-filter: blur(10px);
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: calc(100% - 8px);
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 4px;
    cursor: grab;
}

.contents {
    margin-top: 30px;
    height: calc(100% - 25px);
    overflow: scroll;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% - 38px);
    width: calc(100% - 8px);
    padding: 4px;
}

.selection {
    position: absolute;
    background-color: rgba(216, 224, 226, 0.4);
    border: 1px solid rgba(80, 83, 84, 0.6);
    display: none;
}

.noselect {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
