html {
    width: 100%;
    height: 100%;
    overflow-y: auto
}

.main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
    width: 620px;
    flex-wrap: wrap;
}

.app-item {
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    overflow: hidden;
    color: #000;
}

.app-logo {
    width: 58%;
    height: 58%;
    border-radius: 20%;
    border: 1px solid #dedede;
}

.app-name {
    font-size: 1.1rem;
    white-space: normal;
    /*word-break: break-word;*/
    text-align: center;
    font-weight: normal;
}

.v-btn {
    text-transform: none;
}