* {
    margin: 0;
    font-family: 'Noto Sans';
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.text-normal {
    font-size: 12pt;
}

.text-small {
    font-size: 10pt;
}

.hoverable:hover {
    filter: contrast(0.5) brightness(1.3);
}

.icon {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.taskbar-normal {
    position: absolute;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    margin: 8px;
    width: calc(100% - 16px);
    height: 44px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    transition:
	margin 0.2s,
	width 0.2s,
	border-radius 0.2s,
	background-color 0.2s;
}

.taskbar-unintrusive {
    margin: 0;
    width: 100%;
    border-radius: 0;
    background-color: rgb(240, 240, 240);
}

#wallpaper-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
    background-color: white;
}
