body {
    height: 100vh;
    margin: 0;
    background-color: #0f030c;
    background-image: url('../img/bg/sunset.png');
    font-family: "Titillium Web";
    overflow: hidden;
    background-position: center 45%;
    background-repeat: no-repeat;
    user-select: none;
}
#window-container {
    height: 100%;
}
.window {
    left: 20%;
    right: 20%;
    width: 700px;
    height: 450px;
    background-color: rgb(255 13 105 / 30%);
    border: none;
    display: flex;
    flex-direction: column;
    position: absolute;
}
.window-narrow {
    width: 350px;
    height: 600px;
}
.window .window-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    color: rgb(255 255 255 / 80%);
    border: 0;
    font-weight: 400;
    user-select: none;
    padding-left: 7px;
}
.window-content {
    height: 100%;
}
.window-controls {
    display: flex;
}
.window-close, .window-maximize, .window-minimize {
    padding: 5px 7px;
}
.window-close:hover {
    background-color: rgba(255,0,0,0.85);
}
.window-maximize:hover, .window-minimize:hover {
    background-color: rgba(68,68,68,0.2);
}
.window-maximized {
    top: 0 !important;
    left: 0 !important;
    height: calc(100% - 46px) !important;
    width: 100% !important;
}
.window-active {
    z-index: 200;
}
.window-active .window-title {
    z-index: 250;
    background-color: rgba(68,68,68,0.2);
}
.window-body {
    background-color: rgb(255 255 255 / 88%);
    height: 100%;
    overflow: auto;
}
.ui-draggable-dragging iframe {
    pointer-events: none;
}
#desktop {
    position: absolute;
    height: calc(100% - 44px);
}
.desktop-icon {
    color: rgb(255 255 255 / 80%);
    display: flex;
    flex-direction: column;
    height: 100px;
    width: 100px;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin: 20px 20px 30px 20px;
}
.desktop-icon i {
    padding: 20px;
    font-size: 30px;
    width: 70px;
    height: 70px;
    color: rgba(0,0,0,0.9);
}
.desktop-icon img {
    height: 70%;
    width: 70%;
}
.desktop-icon span {
    text-align: center;
}
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 35%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 70px;
    height: 70px;
}
.logo {
    position: absolute;
    bottom: 100px;
    right: 10%;
    color: #fff;
    font-weight: bolder;
    font-size: 100px;
    user-select: none;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 50%)
}
.logo span, .taskbar-logo span {
    color: #FF5F00;
}
.desktop-icon i.fa.fa-fw.fa-gamepad {
    margin-left: -8px;
}
#window-game .window-body, #window-sudoku .window-body, #window-moon .window-body, #window-book .window-body {
    overflow: hidden;
}
.taskbar {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0;
    flex-flow: row nowrap;
    justify-content: flex-start;
}
.taskbar-logo {
    font-family: "Titillium Web";
    padding: 7px 0.8rem;
    cursor: default;
    margin: 0;
    transition: all 0.3s ease;
}
.start-menu {
    top: initial;
    bottom: 100%;
    background-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 0;
}
.start-menu.show{
    display: flex;
}
.start-menu-branding {
    rotate: 180deg;
    writing-mode: vertical-rl;
    background-color: #FF5F00;
    font-weight: bold;
    padding: 0.5rem 0;
}
.start-menu-menu {
    padding: 0.5rem 0;
}
.start-menu-item {
    cursor: default;
    transition: all 0.3s ease;
}
.start-menu-item:active {
    background-color: rgba(255,255,255,0.2);
}
.start-menu.show + .taskbar-logo {
    background: rgba(255,255,255,0.3);
}
.taskbar-icon {
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    padding: 0.5rem 0.9rem;
    color: rgba(0,0,0,0.9);
    margin-right: 1px;
    transition: all 0.3s ease;
}
.taskbar-icon.active {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}
.taskbar-logo:hover, .taskbar-icon:hover, .start-menu-item:hover {
    background: rgba(255,255,255,0.3);
    color: rgba(0,0,0,0.9);
    transition: all 0.3s ease;
}
.taskbar-icon-active {
    background: rgba(255,255,255,0.2);
}
.start-menu-submenu {
    position: relative;
}
.start-menu-submenu .dropdown-menu {
    top: -130%;
    left: 100%;
    background-color: rgba(255, 255, 255, 0.4);    
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
}
.start-menu-submenu:nth-child(2) .dropdown-menu {
    top: -30%;
}
.date-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
    font-size: 14px;
    margin-left: auto;
    margin-right: 2.5rem;
    transition: all 0.3s ease;
}
.date-time:hover {
    text-decoration: none;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
#clock, #date {
    text-decoration: none;
    color: rgba(0,0,0,0.9);
}
.show-desktop {
    border-left: 1px solid rgba(255,255,255,0.6);
    padding: 0 2.5px;
    height: 44px;
    transition: all 0.3s ease;
}
.show-desktop:hover {
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.gallery {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 1.2rem;
}
.gallery figure {
    margin: 5px;
    max-width: calc(25% - 10px);
}
figcaption {
    margin-top: 5px;
    text-align: center;
}
.ui-draggable-dragging iframe, .ui-resizable-resizing {
    pointer-events: none;
}