body {
    background-color: #FFC800;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* 縦方向に要素を並べる */
    height: 100vh;
    margin: 0;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央揃え */
    text-align: center; /* テキストを中央揃え */
}

.center-container img {
    max-width: 100%;
    height: auto;
}

.title-text {
    color: #242424;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px; /* 画像との間にスペース */
    text-align: center; /* テキストを中央揃え */
}
