body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fffffbe9;
    justify-content: flex-start; /* スマホで上部の空白を減らす */
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    padding-top: 10px; /* 少しだけ上に余裕を持たせる */
}

button {
    font-size: 1rem;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

#pixelControl {
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    border: 1px solid black;
    margin-top: 1px;
}

#imageSelector {
    font-size: 15px; /* フォントサイズを大きく */
    padding: 5px; /* 内側の余白を大きく */
    height: 30px; /* セレクタの高さを調整 */
}

.lyrics {
    display: inline-block;
    font-size: 20px; /* 歌詞のフォントサイズを20pxに設定 */
    margin-top: -10px; /* 歌詞と上の要素（タイトル）の間隔を調整 */
    margin-bottom: 1px; /* 歌詞と下の要素（pixel）の間隔を調整 */
    white-space: nowrap;
    animation: moveLyrics 29s linear infinite;
    text-shadow: 1px 1px 1px rgba(255, 0, 0, 1.0);
    color: pink;
}

.lyrics-container {
    margin: 1px 0; /* 歌詞の上下余白を狭めた */
}

@keyframes moveLyrics {
    0% {
        transform: translateX(55%);
    }
    100% {
        transform: translateX(-55%);
    }
}

h3 {
    margin: 5px 0;
    font-size: 25px;
}

h4{
    margin: 5px 0;
    font-size: 20px;
    font-weight: normal; /* 太文字を解除 */
}