.list{
    margin: 20px auto;
    background-color: #cce7ff;
    border-radius: 30px;
    width: 60%;
    padding: 5px;
}
.list *{
    margin: 10px;
}
.product .list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.indexImage {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease;
}
#products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.aboutus {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
}
.aboutus-text {
    text-align: left;
    width: 50%;
    padding: 32px;
    /*font-size: 25px;*/

    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.aboutus a{
    margin-top: 34px;
}
.aboutus-image{
    width: 50%;
    object-fit: contain
}

.paragraph {
    padding: 60px 20px;
    text-align: center;
}
.heroindex{
    background: rgba(0, 0, 0, 0);
    position: fixed;
    z-index: 0;
    height: 100vh;
    font-size: 1.5em;
    top: 7vh;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, #1e90ff, #00bfff); /* 從左到右漸變 */
    background-size: 200% 100%; /* 讓漸變範圍更大 */
    animation: gradientHover 5s ease infinite; /* 可選：動態流動效果 */
    color: white;
}
.banner-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    padding: 20px;
    animation: slideUp 1.2s ease;
}
.banner-content a{
    margin-top: 20px;
}
.container{
    background-color: white;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.header {
    position: fixed;
    z-index: 2;
    width: 100%;
}
.footer{
    position: relative;
    z-index: 2;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
