body {
    cursor: pointer;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.menu {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    grid-template-rows: repeat(3, 175px);
    grid-gap: 40px;
    justify-items: center;
    height: 85vh;
}

.app {
    background-size: 100% 100%;
    background-color: #FFFFFF;
    border: 3px solid #b1b1af;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 175px;
}

.app:hover:not(.empty) {
    border-color: cyan;
}

.app img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.empty {
    background: repeating-linear-gradient(
        0deg,
        rgba(220, 220, 220, 0.1),
        rgba(220, 220, 220, 0.1) 4px,
        rgba(180, 180, 180, 0.7) 4px,
        rgba(180, 180, 180, 0.7) 8px
    );
}

@font-face {
    font-family: timeFont;
    src: url('/time.ttf');
}

.time {
    font-family: timeFont;
    color: grey;
}