*{
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.wrapper{
    width: 100vw;
    height: 100vh;
    background-image: url('../graph2.png');
    background-repeat:repeat;
    background-size: 50px;
    padding: 0;
    margin: 0;
    user-select: none;
}

.body{
    
}

.desktop_icons {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    width: 100vw;
    column-gap: 20px;
    bottom: 0;

}

.folders {
    height: 100%;
    width: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(80px , 1fr));
    grid-auto-rows:min-content;
}
.folder{
    width: 40px;
    padding: 20px;
    font-size: clamp(.8rem, .5rem, 2.5rem);
}

.desktop_icons .icon_box {
    
    background-color: #f7f5dc;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    padding: 10px;
    box-shadow: 2px 2px 5px grey;
    transition: transform 0.2s ease;
    /*top: calc(75vh - 50px);*/
}



/* Hovering over the box scales the box itself */
.desktop_icons .icon_box:hover {
    transform: scale(1.15) translateY(-5px); 
    box-shadow: 5px 5px 10px grey;
    z-index: 10000;
}

.icon_box img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.pane_wrapper{
    width: 300px;
    height: 300px;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    border-color:   white;
    box-shadow: 5px 5px 10px grey;
    position: absolute;
    left: calc(50vw - 150px); 
    top: calc(50vh - 150px);
}
.pane_wrapper .pane {
    width: 100%;
    height: calc(100% - 30px);
    background-color: #fffdd0;
    position: absolute;
    bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: auto;
    
}

.pane_wrapper .pane .main_text  {
    padding:10px;
    margin: 0;
}

.pane_wrapper .pane .about_me_picture {
    width: 100%;
    height: 100%;
    background-image: url('../Window.webp');
    background-repeat:no-repeat;
    background-size:contain;
}

.pane_wrapper .pane_header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    background-color: #3f84c9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.2s ease;
}

.pane_header .pane_title{
    height: 30px;
    position:absolute;
    top: 0;
    left :0;
    cursor:default;
    margin: 0;
    padding: 0;
    margin-left: 7px;
    text-align: center;
    line-height: 30px;
    color: white;
}

.pane_wrapper .pane_header_clicked {
    filter: brightness(0.95);
}

.pane_wrapper .corner {
    width: 20px;
    height: 20px;
    position:absolute;
    bottom:0;
    right:0;
    cursor: nwse-resize;
}

.pane_header .close{
    width: 30px;
    height: 30px;
    position:absolute;
    top: 0;
    right:0;
    cursor:pointer;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 30px;
    color: white;
}

.pane_header .close:hover{
    color:#fd6d6d;
    font-weight: bolder;
}

.span {
    
 display: inline-block;
  vertical-align: middle;
  line-height: normal;

}
