body.desk {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: -10;
}

div.box {
    width: 100%;
    height: 100%;
}

div.desk {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./images/desk.jpg");
    background-size: cover;
    background-position: bottom;
    z-index: -1;
}

img.handout:hover {
    cursor: grab;
}
img.handout:active {
    cursor: grabbing;
}

div.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-content: center;
    justify-content: center;
}

div#postitDiv {
    position: inherit;
    display: flexbox;
    width: min-content;
    height: min-content;
    padding: 0;
    margin: 0;
    margin-top: 5%;
}

img#postit {
    position: relative;
    display: block;
}
img#postit:hover {
    cursor: pointer;
}


div#postitContent {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    margin: 15%;
    z-index: 15;
    width: 350px;
    font-family: "Nothing You Could Do", cursive;
}

#postitText {
    position: relative;
    width: 350px;
}

.hidden {
    display: none;
    visibility: hidden;
}



/* Font */
.nothing-you-could-do-regular {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}
