BODY {
    background-image: url('back.jpg');
    font-family: 'cwTeXYen', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    background-position: center;
}

    @font-face {
        font-family: 'cwTeXYen';
        font-style: normal;
        font-weight: 500;
        src: url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.eot);
        src: url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.eot?#iefix) format('embedded-opentype'), url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.woff2) format('woff2'), url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.woff) format('woff'), url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.ttf) format('truetype');
    }

    header {
    background-color: #D2D5B8;
    color: white;
    padding: 20px;
}

h1 {
    font-family: 'cwTeXYen', sans-serif;
}

.h1-1 {
    font-size: 30px;
    margin-top: 15px;
}

nav {
    background-color: #C9BA9B;
    padding: 15px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        nav ul li {
            font-size: 18px;
        }

            nav ul li a {
                color: white;
                text-decoration: none;
                padding: 10px 15px;
                border-radius: 5px;
                transition: background 0.3s, transform 0.2s;
            }

                nav ul li a:hover {
                    /*background-color: #ffcc00;*/
                    background: linear-gradient(to right, white 0%, #f5d289 100%);
                    color: #333;
                    transform: scale(1.1);
                }
.li1{
    color:black;
}

p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
    color: #555;
}


button {
    background-color: #C9BA9B;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    button:hover {
        background-color: #ffcc00;
        transform: translateY(-3px);
    }

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.carousel-container {
    width: 100%;
    max-width: 640px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

    .carousel-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

p {
    font-size: 20px;
    margin: auto;
    padding: 20px;
}

.highlight-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    overflow: hidden; 
    margin-bottom: 20px;
    padding: 10px;
    background-size: 200% 100%;
    background-position: left bottom;
}

    .highlight img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        margin: 10px;
    }

.highlight-left img {
    float: left;
}

.highlight-right img {
    float: right;
}

.text {
    font-size: 18px;
    text-align: left;
    padding: 10px;
    overflow: hidden;
}

.highlight:after {
    content: "";
    display: table;
    clear: both;
}

.highlight:hover {
    background: linear-gradient(to right, transparent 0%, #BDC2BB 100%);
    background-position: right bottom;
}

audio {
    padding-right: 1500px;
    width: 200px;
    height: 30px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #C9BA9B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

    .back-to-top:hover {
        background-color: #ffcc00;
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    BODY {
        background-size: cover;
    }
    .social-links {
        gap: 20px;
    }   
}