.display-5 {
    font-weight: bold;
}
.full-screen {
    width: 90vw; 
    height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.custom-btn {
    font-size: 2rem;
    padding: 20px 40px;
}

.kanryo {
    display: flex;
    justify-content: center; /* 横方向の中央揃え */
    font-size: 24px; /* 文字の大きさを大きく */
    color: white; /* 文字色を白に */
    background-color: #4CAF50; /* 背景色を暗緑色に */
    font-family: 'Arial', sans-serif; /* フォントをArialに */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* テキストに影をつける */
    padding: 20px; /* 内側の余白を設定 */
    width: 100%; /* コンテナの幅を全体に */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* コンテナ自体に軽い影をつける */
    border-radius: 10px; /* 角を丸く */
}

.centered-img {
    display: flex;           /* フレックスボックスを使用 */
    justify-content: center; /* 中央寄せ */
    align-items: center;     /* アイテムを垂直方向に中央揃え */
}