body {
	background-image: url('assets/room_wallpaper.jpg');
	 background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 40px;
    width: 100%;
    height: 100%;
    position: fixed;
}

desk {
    display: flex;
    width:200vw;
    height:fit-content;
    min-height: 100%;
}

.body-text{
    font-family: Courier New;
    color:#347D84;
    font-size:1.1em;
    font-weight: 700;
}

.paper-textbox {
    display: flex;
  width:20%; /* Do not grow, do not shrink, 75% width */
  background-color: #fff;
    padding: 20px; /* Add padding for better visual appearance */
    background-image: url('assets/paper.jpg');
    background-repeat: no-repeat;
    border-radius: 10px;
   justify-content: center; 
    align-items: center;
    text-align: center;
        position: absolute;
        left: 50%;
        top:45%;
        transform: translateX(-20%) translateY(-50%);
}

.desk-susie {
  width:30%; /* Do not grow, do not shrink, 25% width */
   display: inline-block;
    padding: 20px; /* Add padding for better visual appearance */
    margin-right: 24px;
    margin-left: 10vw;
    bottom:20vh;
    min-height: 100%;
}

.desk-textbox {
    display: inline-block;
  width:42%; /* Do not grow, do not shrink, 75% width */
  background-color: #fff;
    padding: 20px; /* Add padding for better visual appearance */
    margin-top: 10vh;
    height: 600px;
    background-image: url('assets/paper.jpg');
    background-repeat: no-repeat;
    border-radius: 10px;
}


.other-textbox {
    justify-content: center; 
    align-items: center;
    text-align: center;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    display: flex;
    max-width: 30vw;
  background-color: #fff;
    padding: 20px; /* Add padding for better visual appearance */
    height: 240px;
    background-image: url('assets/paper.jpg');
    background-repeat: no-repeat;
    border-radius: 10px;
    flex-wrap: wrap;
}

.status-note{
       position: absolute;
        right: 9vw;
        bottom: 25vh;
    width:8%; 
    height:14%;
        background-image: url('assets/paper.jpg');
    background-repeat: no-repeat;
    z-index:8;
    padding:10px;
    box-shadow: -4px 2px 1px 3px rgb(50, 117, 115,0.8);
    border-radius: 6px;
    text-align: center;
}

/*----------------CODE FOR BUTTONS--------------------------------*/


.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
}

.imgtxt span {
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.2rem;
  color:#ddd5c8;
 
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}

.imgtxt:hover img, .imgtxt:focus img {
  filter: contrast(90%) saturate(120%);
	image-rendering: pixelated;
}

.imgborder {
  filter: drop-shadow(1px 1px 0 #8299A8) 
    drop-shadow(-1px 1px 0 #8299A8)
    drop-shadow(1px -1px 0 #8299A8)
    drop-shadow(-1px -1px 0 #8299A8);
}