body {
    margin: 0;
    padding: 20px;
    background: transparent;
    color: #f0f4f8;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* style.css */

.twitter-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tweet {
    flex-basis: calc(33.333% - 10px); /* 3つ表示するために幅を計算 */
    margin-bottom: 10px; /* 下部にマージンを設定 */
}


.container {
    display: flex;
}

.photo, .text {
    flex: 1;
}

.photo {
    /* 写真のスタイルを調整 */
}

.text {
    /* テキストのスタイルを調整 */
}