#Left,
#Right {
    min-height: 500px;
    flex: 1;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    /* Adjust the duration and timing function as needed */
}

#Left:hover {
    flex: 2.5;
    /* Adjust the ratio to widen the left div */
}

#Right:hover {
    flex: 2.5;
    /* Adjust the ratio to shrink the right div */
}


#Left,
#Right {
    background-position: top;
    background-repeat: no-repeat;
}

#Left {
    text-shadow: -2px -2px 0 rgb(59, 59, 59), 2px -2px 0 rgb(59, 59, 59), -1px 1px 0 rgb(59, 59, 59), 1px 1px 0 rgb(59, 59, 59);

    background-position: center;
    color: white !important;
    background-image: url("../Assets/Background/Diamond/4.png");
    background-size: cover;
}


#Right {
    text-shadow: -2px -2px 0 rgb(59, 59, 59), 2px -2px 0 rgb(59, 59, 59), -1px 1px 0 rgb(59, 59, 59), 1px 1px 0 rgb(59, 59, 59);

    background-position: center;
    color: white !important;
    background-image: url("../Assets/Background/Diamond/1.png");
    background-size: cover;
}



#mySearch {
    height: 50px;
}


@media only screen and (max-width: 768px) {

    #searchQuery {
        margin-left: auto;
        margin-right: auto;
        width: 60%;
    }

    #Left {
        min-width: 430px;
        display: block;
        min-height: 190px;
    }

    #Right {
        min-width: 430px;
        min-height: 190px;
        display: block;
    }

    #Left h1 {
        padding-top: 60px;
        vertical-align: middle;
    }

    #Right h1 {
        padding-top: 60px;
        vertical-align: middle;
    }

    #PicContainer {}

}