.sidebar{
    background: rgb(163, 11, 11);
    color:white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    position: fixed;
    left: 0;
    top:0;
    bottom:0;
    width: 90px;
    text-align: center;
    /* z-index:200; */
   
}

.links,
.links-m{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    height: 74px;
    gap: 10px;
    margin-bottom: 40px;
    /* margin-top: 40px; */
    /*  */
  
   
}

.links:hover,
.links-m:hover{
     background-color: rgba(49, 46, 233, 0.5);
     cursor: pointer;
     border-bottom-style:solid ;
     border-bottom-color:white ;
     translate: scale(1.5);
     
     
}
.links a{
    text-decoration: none;
    font-size: 16px;
    color: white;
}
.links-m a{
   text-decoration: none;
    font-size: 11px;
    color: white; 
}
.links img,
.links-m img{
    height: 24px;
}

.rand{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
}
.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 100px;
}

@media(max-width:750px){
    .form-grid{
        grid-template-columns: 1fr;
    }
}
@media (max-width:750px){
    .rand{
        grid-template-columns:1fr ;
    }

}
@media (min-width:751px) and (max-width:999px){
    .rand{
        grid-template-columns:1fr 1fr ;
    }
}
@media (min-width:1000px) {
    .rand{
        grid-template-columns:1fr 1fr 1fr ;
    }
}

.cards{
    background:rgb(163, 11, 11);
    color:white;
    justify-content:center;
    align-items:center;
    display:flex;
    flex-direction:column;
    border-radius:50px;
    border-style:solid;
    border-width:1px;
}
.commodity{
    margin-left: 100px;
     display:grid;
     grid-template-columns:1fr 1fr;
}
@media (max-width:750px){
    .commodity{
        grid-template-columns: 1fr;
    }
}