@media (max-width: 899px) {
    header {
        background-color: black;
        display: block;
        height: auto;
        min-width: 320px;
        
    }


    header div {
        animation: summon 1s linear;
        text-align: center;
        flex-grow: 0;
        flex-direction: column;
    }

    header h1{
        color: white;
        padding-left: 0px;
    }

    header h2 { 
    padding-left: 25px;
    color: white;
    flex-direction: row;
    }
    
    .dissc { 
        padding-left: 0px;
        animation: disclamer 2s alternate infinite;
    }

    .biglis {
        display: flex;
        flex-direction: column;
        margin-right: 0px;
        justify-content:center;
        height: 100vh;
        width: 60vw;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        background-color: black;
    }

    header nav {
        display: none;
        flex-direction: column;
        margin-top: 0px;
        margin-right: 0px;
        align-items: normal;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0px;
        z-index: 10;
        height: 100vh;
        width: 100vw;
        animation-name: summonmenuside;
        animation-duration: 0.5s;
    }

    .inlist {
        text-align: center;
        list-style-type: none;
        margin-right: 0px;
        background-color: black;
        align-items: center;
    }

    .inlist li a{
        color: gray;
    }

    header nav li a {
        text-decoration: none;
        color: white;
    }
    
    .lis , .inlist li, .oneitemlis {
        width: unset;
        min-width: 100px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        position: relative;
        cursor: unset;
        align-items: center;
    }

    .mobileopcl {
        display: flex;
        color: white;
        justify-content: center;
        height: 64px;
        object-fit: contain;
        cursor: pointer;
    }

}

@media (min-width: 900px) {
    .biglis {
        display: inline-flex;
        flex-direction: row;
        height: 60px;
    }

    .mobileopcl {
        display: none;
    }
}