.on-screen {
    width: 100%;
    height: 100vh;
    display: none;
}

.on-screen.active {
    display: block;
}

/*----------- SCREEN CONTAINER -----------*/

.screen-container {
    background: url(/assets/backgrounds/mainBackground.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
}

/*----------- MENU BAR -----------*/

.wall-icons {
    width: 1px;
    height: 100%;
    background-color: #848484;
    margin: 0 10px;
}

.menu-bar {
    width: auto;
    min-width: 200px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #0000009e;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 10px;
    border: 2px solid #848484;
    padding: 10px;
}

.menu-bar > .app-button,
.menu-bar > .favorite-apps-section > .app-button {
    background-color: transparent;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: none;
    border-radius: 10px;
    padding: 5px;
    margin: 0 2px;
}

.app-button:hover,
.app-button.active,
.favorite-apps-section > .app-button:hover,
.favorite-apps-section > .app-button.active {
    background-color: #848484;
}

.show-applications-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
}

.show-applications-button .square-menu {
    background-color: #fff;
    width: 3px;
    height: 3px;
    display: block;
}

.app-button > img {
    width: 100%;
    height: 100%;
}