.window {
    box-sizing: border-box;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    height: 600px;
    width: 800px;
    background-color: #ddd;
    z-index: 100;
    padding: 20px;
    display: none;
    box-shadow: 0px 0px 14px -2px rgba(0,0,0,0.75);
}
.window h1 {
    font-family: 'bebas-neue';
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 3rem;
}
.window label {
    margin-bottom: 5px;
}
.window input[type=checkbox] {
    margin-left: 0;
}
.window input[type=number] {
    margin-left: 5px;
    width: 77px;
}
.window-quit {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgb(209, 0, 0);
    color: #fafafa;
    padding: 5px 20px;
    transition: 0.15s;
}
.window-quit:hover {
    background-color: rgb(222, 27, 27);
    cursor: pointer;
}
.window-p {
    margin: 35px 0;
    font-size: 1.1rem;
    user-select: text;
    cursor: text;
    overflow-y: auto;
    max-height: 520px;
    white-space: pre-wrap;
}