
body {
    background-color: #fdfdfd;
    background-image: url("./hey.gif");
}
#mainContent {
    border: 4mm ridge rgba(57,58,43,0.6);
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #30384d;
    border-radius: 16px;
    color: rgb(240,234,152);
}
.window {
    display: flex;
    flex-direction: column;
    position: absolute;
    border: solid black;
    border-radius: 15px;
}
#welcome {
    top: 10%;
    left: 75%;
    background-color: rgb(247,224,150);
    padding: 10px;
}
#CatNotes {
    top: 150px;
    left: 250px;
    width: 400px;
    height: 300px;
    background-color: white;
    display: none;
}
.windowheader {
    display: flex;
    justify-content: space-between;
    cursor: move;
    background-color: rgb(206, 178, 126);
    padding: 5px;
    border-radius: 16px;
}
.button {
    cursor: pointer;
}
#desktopApps {
    padding-top: 70px;
    padding-left: 20px;
}
.desktopIcon {
    width: 100px;
    text-align: center;
    cursor: pointer;
}
.desktopIcon img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: bisque;
}
.notesBody {
    padding: 10px;
}
#taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;

}
#taskbar p {
    padding: 5px;
    background-color: burlywood;
    border-radius: 10px;
}
#closebutton {
    border-radius: 20px;
    background-color: red;
    
}
#welcomeclose {
    border-radius: 16px;
    background-color: rgb(255, 113, 113);
}
