.container{
    width: 95vw;
    display: grid;
    align-items: center;
    margin-top: 30px;
    margin-left: 10px;
    grid-template-columns: auto;
    grid-auto-rows: minmax(auto auto);
    grid-gap: 10px;
    grid-template-areas: 
    "lijevo desno"
    ; 
    
}

.muski{
    
    grid-area: lijevo;
    width: 45vw;
    height: 90vh;
    text-align: center;
    
   
   
}
.zene{
    grid-area: desno;
    width: 45vw;
    height: 90vh;
    text-align: center;
    
     
}
.dostupnost{
    width: 40vw;
    height: 500px;
    margin-top: 30px;
    margin-left: 10px;
    display: block;
    position: relative;
    top: 50%;
    left: 25%;
}



@media screen and (max-width: 700px) {
    .container{
        width: 100%;
        height: 100%;
        padding-top: 10px;
        margin: 10px;
        grid-gap: 5px;
        grid-template-areas: 
        "lijevo"
        "desno"
        ;
    }

    .muski{
        width: 90vw;
        height: 90vh;
        text-align: center;  
    }

    .zene{
        width: 90vw;
        height: 90vh;
        text-align: center;    
    }

    .dostupnost{
        width: 90vw;
        height: 90vh;
        padding-top: 10px;
        margin: 10px;
        position: relative;
        top: 0%;
        left: 0%;
    }
}


