html {
    overflow-x: hidden;
    touch-action: pan-y; 
}
.mdiv{
    display: flex;
}
.mlf{
    
}
.mlr{
    width:20rem;
    padding-left: 0.75rem;
}
.mlr>div{
    padding: 0.25rem;
    border: 1px solid #e8e8fd;
    margin-bottom: 0.75rem;
    border-radius: 4px;
}
.night .mlr>div{
    border:1px solid #444;
}
:root {
    --sidebar-width: 320px;
    --highlight-color: orange;
    --support-color: grey;
    --border-radius: 12px;
    --color1: #a7cee0;
    --color2: #d0dea7;
    --border: 1px;
    --blur: 6px;
    --opacity: 0.25;
    --text-color: rgb(255, 255, 255, calc(var(--opacity)*3))
}
.mlf{
    width:calc(100% - 20rem);
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background: linear-gradient(135deg, var(--color1) 50%, var(--color2))
}
#org_a {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: -80px;
    margin-top: -230px;
    background: linear-gradient(135deg, #ff5722, #2196f3);
    animation: bounce-down 5s linear infinite
}
#org_b {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: -60px;
    margin-top: 100px;
    background: linear-gradient(135deg, #cb1aa5, #00b277);
    z-index: 0;
    animation: bounce-down 8s linear infinite
}
#demodiv {
    width: 420px;
    height: 260px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2
}
#demospan {
    color: var(--text-color);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 16px
}
.glass {
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: var(--border) solid #ffffff2e
}
.glass-light {
    background: hsla(0, 0%, 100%, var(--opacity));
    box-shadow: 0 6px 15px 0 #8e8e8e30
}
.glass-dark {
    background: hsla(0, 0%, 35%, var(--opacity));
    box-shadow: 0 6px 15px 0 #0e0e0e30
}
.butdivbut{
    height: 1.8rem;
    line-height: 1.8rem;
    display: block;
    background-color: #06b672;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 1290px){
    .mdiv {
        display:block;
    }
    .mlf {
        width:100%;
    }
    .mlr {
        width: 100%;
        padding-left:0rem;
        margin-top: 0.75rem;
    }
}