body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("https://static1.squarespace.com/static/5e949a92e17d55230cd1d44f/t/6a27344160bfa10bcacfc839/1780954239875/GoldenGate_6k.png");
    background-size: cover;
    height: 100vh;
}

.topbar {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.topbar-item {
    margin-left: 16px;
    margin-right: 16px;
    cursor: pointer;
}

.window {
    position: absolute;
    width: 350px;
    border: solid;
    border-radius: 16px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
    user-select: none;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.window-content {
    width: 400px;
    padding: 20px;
}

.headertext {
    margin: 0;
}

.closebutton {
    width: 16px;
    height: 16px;
    background-color: rgb(255, 187, 0);
    border-radius: 50%;
    cursor: pointer;
    margin-left: auto;
}

#desktopapps {
    padding-top: 70px;
    padding-left: 20px;
}

.desktop-icon {
    width: 80px;
    padding-top: 70px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.desktop-icon img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.desktop-icon p {
    margin: 5px;
}

.journal-content {
    background: white;
    width: 500px;
    height: 400px;

    display: flex;

    padding: 15px;

    border-radius: 12px;
}

#sidebar {
    width: 150px;
    background:#f2f2f2;
    border-radius: 10px;
    padding: 10px;
    margin-right: 15px;
}

#notescontent {
    flex: 1;
    overflow-y: auto;
}