* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --body-color: rgba(255,255,255,1);
    --body-color-light: rgba(0,0,0,0.1);

    --body-opposite-color: rgba(0,0,0,1);
    --body-opposite-color-light: rgba(255,255,255,0.1);
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
}

.app {
    background-color: var(--body-color);
    border-radius: 10px;
    overflow: hidden;
}

.home {
    width: 100vw;
    height: 100vh;
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    overflow-y: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.list-apps-item {
    background-color: var(--body-color);
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 7px;
    margin-bottom: 15px;
    margin-top: 15px;
    width: 100%;
}

.list-apps-item:active {
    background-color: var(--body-color-light);
}

.list-apps-item-header {
    padding: 10px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
}

.list-apps-item-header-title {
    font-weight: 700;
}

.list-apps-item-header-faded {
    opacity: 0.5;
}

.list-apps-item-content {
    padding: 10px;
    padding-bottom: 14px;
}
