.page-title {
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.app-list {
    /* 너비를 auto로 해서 가운데 정렬이 되도록 한다.*/
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-img {
    width: 250px;
    height: 250px;
    background-size: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2);
}

.app-name {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    padding: 5px;
    /* 글자 단위로 줄바꿈한다. */
    word-break: keep-all;
}
/* 880px는 mobile이다. */
@media screen and (max-width: 880px) {
    .app-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .app-img {
        /* 한 줄에 2개가 들어가서 너비를 기준으로 40%를 차지하게 한다. */
        width: 40vw;
        height: 40vw;
        max-width: 250px;
        max-height: 250px;
    }
    .app-name {
        font-size: 16px;    
    }
}