* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;

}

body {
    background-color: rgb(248, 248, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#conone {
    display: flex;
    margin: 100px 50px 0px 50px;
    max-width: 900px;
    gap: 20px;
    margin-bottom: 100px;



    #left {
        background-color: white;
        box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);
        border-radius: 15px;
        width: 300px;
        height: 400px;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
        text-align: center;

        img {
            background-color: rgb(227, 227, 227);
            height: 170px;
            width: 170px;
            border-radius: 50%;
            border: 3px solid black;

        }

        div {
            display: flex;
            flex-direction: column;
            gap: 20px;

            h2 {
                border-bottom: 2px solid black;
                padding: 0px 8px 0px 8px;
            }
        }


    }

    #right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;


        #coninfo {
            display: flex;
            align-items: center;
            gap: 5px;
            background-color: white;
            width: fit-content;
            box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);
            padding: 10px 25px 10px 25px;
            border-radius: 30px;
            margin-top: 10px;

            i {
                font-size: 2rem;
            }
        }

    }
}


#introText {
    overflow: hidden;
    display: inline-block;
}



#contwo {
    display: flex;
    flex-direction: column;
    margin: 100px 50px 0px 50px;
    width: 100%;
    max-width: 900px;
    gap: 100px;
    margin-bottom: 100px;



    #box {
        display: flex;
        gap: 30px;


        #left {
            background-color: rgb(255, 255, 255);
            box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);
            border-radius: 10px;
            padding: 2px;
            height: fit-content;

            img {
                width: 300PX;
                border-radius: 10px;

            }

            button {
                align-self: start;
                justify-self: end;
                position: absolute;
                padding: 5px 12px 5px 12px;
                border-radius: 25px;
                border: none;
                background-color: white;
                box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);

            }
        }

        #right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;

            p {
                text-wrap: warp;
            }

            h3 {
                font-size: 3rem;
            }
        }
    }

}


#dtl {
    background-color: white;
    max-width: 300px;
    padding: 20px;
    margin: 50ox 0px 50px 0px;
    text-align: center;
    line-height: 25px;
    box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);
    border-radius: 15px;
    margin: 20px 0px 100px 0px;

    h1 {
        position: relative;
        justify-self: center;
        top: -70px;
        z-index: 1;
    }
}

video {
    background-color: white;
    max-width: 600px;

    box-shadow: 0px 0px 50px rgba(168, 168, 205, 0.607);
    border-radius: 15px;
    margin: 20px 0px 50px 0px;
}


#gal {
    width: 1000px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px;
    box-sizing: border-box;

}

.scroll-wrapper {
    display: flex;
    gap: 25px;

}

.pic {
    height: 300px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0px 0px 20px rgba(168, 168, 205, 0.458);

}


@media (max-width: 760px) {



    #conone {
        flex-direction: column;
        align-items: center;

        #left {
            transform: scale(0.8);
        }

        img {
            transform: scale(0.8);
        }

        #right {
            font-size: small;

             #coninfo {
            padding: 10px 20px 10px 20px;
        }
        }

       
    }

    #dtl {
        font-size: small;
        width: 70%;
    }

    #contwo {
        transform: scale(0.8);

        #box {
            #left {
                img {
                    width: 150px;
                }
            }

            #right {
                h3 {
                    font-size: 1.5rem;
                }
            }
        }


    }

    video {
        width: 300px;

    }

    #gal {
        width: 100%;
    }

    .scroll-wrapper {
        gap: 10px;
    }

    .pic {
        height: 150px;
    }

}
