.nav-buttons-container {
    width: 830px;
    display: flex;
    flex-wrap: wrap;
}

.nav-buttons-container .nav-btn {
    font-family: "Mukta";
    font-size: 18px;
    padding-right: 20px;
    border: 1px solid rgb(151, 150, 150);
    box-shadow: none;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    height: 40px;
    padding-left: 10px;
}

.nav-btn:active {
    border: none;
    outline: none;
}

.nav-btn:not(.active) {
    background-color: white;
}

button.nav-btn.active {
    outline: none;
    border: none;
}

.nav-btn:hover {
    cursor: pointer;
}

.active {
    background-color: #028F45 !important;
    color: white;
}

.nav-item:not(.active) {
    background-color: white;
}


.image-container{
    display: flex;
    justify-content: center;
    align-items: center;
 
 }


@media screen and (max-width: 1200px) {
    .nav-buttons-container {
        width: 100%;
        left: 0;
        top: 10px;
    }
    
    .content-area {
        width: 100%;
        left: 0;
        margin-top: 20px;
    }
    
    #display-area {
        width: 100%;
        margin: 0 auto;
        height: auto; 
        left: 0;
    }
}

@media screen and (max-width: 800px) {
    .nav-buttons-container {
        height: auto;
    }
    
    .nav-buttons-container .nav-btn {
        width: 100%;
        display: block;
        font-size: 18px; 
        padding: 10px; 
    }
    
    .content-area {
        width: 100%;
        left: 0;
        margin-top: 20px;
    }
    
    #display-area {
        width: 100%;
        height: auto; 
        margin: 0 auto;
        left: 0;
    }
}

.image-container #display-area{
    max-width: 50%;
    width: auto;
    height: auto;
  }

@media(max-width:480px){
   .image-container #display-area{
        max-width: 100%;
    }
}