body {
    background-image: url(./Assets/background.jpeg);
    background-size: cover;
    font-family: Orbitron;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#topbar {
    position: absolute;
    top: 0%;
    width: 80%;
    left: 50%;
    transform: translate(-50%);
    height: 60px;
    display: flex;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
    justify-content: space-between; 
    border-radius: 25px;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
}

.window {
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    width: max-content;
    border-radius: 15px;
    position: absolute;
}

.windowheader {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: move;
    justify-content: space-between;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    background-color: rgb(39, 39, 39, 0.75);
}

.closebutton{
    display: flex;
    width: 18px;
    height: 18px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    color: #000;
    background-color: red;
    border-radius: 15px;
    cursor: pointer;
}

#welcome {
    background-color: rgba(72, 0, 189, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#todos {
    background-color: rgba(46, 46, 46, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    flex-direction: column;
    justify-content: center;
}

#wallpaperIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    filter: drop-shadow(0 0 8px black);
}

#wallpaperIcon:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

a:link {
    color: white;
}

a:visited {
    color: white;
}