header {
    margin-top: 50px;
    background-color: #a1c349; /* 優しいピンク */
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

header h1 {
    color: #4c5c44;
    font-size: 2.5em;
    font-weight: bold;
}
/* メインコンテンツ */
.main-content {

    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 植物セクション */
.plant-genre {
    padding: 20px;
    background-color: #4c5c44; /* 深い緑色 */
    margin-bottom: 20px;
    border-radius: 8px;
}

.genre-title h2 {
    color: #a1c349; /* 明るい草色 */
    font-size: 2em;
    text-align: center;
}

/* 植物リスト */
.plant-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* パソコン版 5列 */
    gap: 20px;
    justify-items: center;
}

.plant-item {
    text-align: center;
    color: #f1f1f1;
    text-decoration: none;
    background-color: #3a4d28; /* 植物アイテムの背景色 */
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.plant-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.plant-item img:hover {
    transform: scale(1.1);
}

.plant-item:hover {
    background-color: #4b7a41; /* 濃い緑 */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .plant-list {
        grid-template-columns: repeat(2, 1fr); /* スマホ版 2列 */
    }

    header h1 {
        font-size: 1.5em;
    }
}


.copyright {
    margin-top: 20px;
    color: white;
    font-size: 1rem;
}
.hiii{
  text-align: center;
}
