/* 画面全体のスタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #269AFA;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* コンテンツを中央揃えするコンテナ */
.container {
    text-align: center;
}

/* アイコンのスタイル */
.app-icon {
    height: 150px;
    width: auto;
    aspect-ratio: 3/1;
    object-fit: cover;
    margin-bottom: 20px;
}

/* アプリ名のスタイル */
.app-name {
    font-size: 24px;
    margin: 0;
    margin-bottom: 10px;
}

/* キャッチコピーのスタイル */
.catchphrase {
    font-size: 16px;
    margin: 0;
}
