body {
    margin: 0;
    background-image: url("Images/DublinOS_BG.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
    height: 100%;
    font-family: sans-serif;
}

.TopBar {
    background-color: #ffffff;
    margin: 15px auto 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    border-radius: 25px;
    border: 4px solid rgb(238, 238, 238);
    box-shadow: 5px 4px 15px 12px rgba(2, 2, 2, 0.123);
}

.TopBar p {
    font-size: 20px;
}

#title {
    margin-left: 16px;
    color: #169B62;
}

#time {
    margin-right: 16px;
    color: #FF883E;
}

.window {
    position: absolute;
    z-index: 9;
    background-color: #ffffff;
    border-radius: 15px;
    text-align: center;
    max-width: 250px;
    border: 3px solid rgb(238, 238, 238);
}

#welcome {
    top:30%;
    left: 40%;
}

#note {
    top: 35%;
    left: 35%;
    height: 300px;
    width: 400px;
}

#gallery{
    top: 30%;
    left: 32%;
    display: flex;
    flex-direction: column;
    white-space: wrap;   
    gap: 15px;          
    padding: 10px;
    width: 100%;
    height: 300px;  
    overflow-y:scroll;

}
#gallery img{
    padding-top: 10px;
    height: 125px;         
    width: auto;           
    flex-shrink: 0;        
    border-radius: 8px; 
}
.windowheader {
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    background-color: rgb(238, 238, 238);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: grab;
}

.windowheader:active {
    cursor: grabbing;
}

.headertext {
    font-size: 17px;
    font-weight: 700;
    padding-left: 16px;
}

.closewindow {
    cursor: pointer;
    background-color: #e6210f;
    margin-left: 15px;
    padding: 5px;
    width: 15px;
    border-radius: 45px;
    color: #ffffff;
    margin-right: 13px;
}

.windowtext {
    font-size: 15px;
    margin: 10px 15px;
}

.desktopIcon {
    text-align: center;
    width: fit-content;
    cursor: pointer;
    border-radius: 15px;
    display: inline-block;
    margin: 64px 0 0 64px;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.desktopIcon img {
    height: 64px;
    width: 64px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: -2px 10px 15px 3px rgba(2, 2, 2, 0.2);
}

.desktopIcon p {
    margin: 0;
    margin-top: 5px;
    background-color: #ffffff;
    border-radius: 5px;
    width: fit-content;
    padding: 0px 5px;
}

.desktopIcon:hover{
    transform: translateY(-5px);
}


.notesArea {
    width: 220px;
    height: 200px;
    margin: 10px 15px;
    padding: 8px;
    font-family: inherit;
    font-size: 16px;
    border: 2px solid rgb(238, 238, 238);
    border-radius: 10px;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

