body{
    margin: 0;
    height: auto !important;
}

a{
    color: rgb(46, 163, 242);
    cursor: pointer;
    text-decoration: none;
}

.container{
    display: flex;
    flex-direction: row;
    width: 60%;
    min-height: 300px;
    margin: auto;
    justify-content: center;
    align-items: top;
    margin-top: 80px;
    flex-wrap: wrap;
}

.img-container{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.img-container img{
    width: 80%;
}

.desc-container{
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    align-items: left;
    justify-content: top;
    margin-top: 30px;
}

.desc-container img{
    width: 70%;
}

.desc-container p{
    margin-left: 25px;
    margin-right: 25px;
}

@media (max-width: 982px){
    .search{
        flex-basis: 100%;
        border-left: 0 !important;
    }
    .nav-foot{
        display: none;
    }

    .container{
        width: 90%;
    } 
    .img-container{
        flex-basis: 100%;
        justify-content: left;
    }
    .desc-container{
        flex-basis: 100%;
        width: 100%;
    }
}

@media (max-width: 760px){
}

.search {
    border-left: 2px solid rgb(213, 213, 213); /* Added border width */
    width: 200px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    text-align: left;
}

.search button{
    width: 68px;
    height: 43px;
    border: none;
    font-family: 'Montserrat', Helvetica, Arial, Lucida;
    font-size: 14px;
    color: rgb(102, 102, 102);
    background-color: rgb(221, 221, 221);
    border-radius: 2px;
}

.search button:hover{
    cursor: pointer;
}

.search-bar{
    display: flex;
    flex-direction: row;
    margin-left: 30px;
    margin-top: 50px;
}

.search-bar input{
    flex: 1;
    height: 40px;
    border: solid rgb(221, 221, 221) 1px;
}

.no-comments{
    font-family: 'Montserrat', Helvetica, Arial, Lucida;
    font-size: 14px;
    color: rgb(102, 102, 102);
}


.header-separator{
    width: 100%;   
    margin: 0;
    border: none;  
    height: 2px;   
    background-color: rgb(242, 242, 242); 
}