header, body{
    margin: 0pt;
    padding: 0pt;
    height: 100%;
    background-color: #e3ffc2;
}


h1{
    text-align: center;
    font-family: Verdana, Tahoma, sans-serif;
}


/**headbar section**/
.headbar{
     position: relative;
    z-index: 21;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #6A894A;
}

.headbar div{
    margin: 10px;
}

.headbar2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    background-color: #97c16c;
    height: 30px;
}

.headbar2 a{
    margin: 0px 20px;
    font-family: Verdana, Tahoma, sans-serif;
    color: black;
    font-size: 20px;
}




.container{
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.forumcard, .forumcard2, .forumcard3, .forumcard4, .forumcard5{
    display: grid;
    grid-template-columns: 100px auto;
    grid-template-rows: auto auto;
    width: 1000px;
    height: 100px;
    background-color: #69894c;
    border-radius: 15px;
    padding: 20px;
    margin: 20px;
    box-shadow: #4f5838 3px 3px 5px;
    cursor: pointer;
}

.textcont, .textcont2, .textcont3, .textcont4, .textcont5{
    font-family: Verdana, Tahoma, sans-serif;
    margin-left: 20px;
}


.forumcard img, .forumcard2 img, .forumcard3 img, .forumcard4 img, .forumcard5 img{
    border-radius: 30px;
    width: 90px;
    height: 90px;
}

li{
    padding: 10px;
}

.drawernav{
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    text-align: center;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 25px;
    position: fixed;
    background-size: cover;
    background-color: #446923;
    z-index: 20;
    top: -200px;
    transition: top 0.50s;
    filter:drop-shadow(0 1px 3px #2e342c)
}

.drawernav a {
    display: inline-block;
    color: rgb(50, 57, 33);        
    text-decoration: none; 
    transition: 0.3s ease, color 0.3s ease; 
}

/* Hover effect */
.drawernav a:hover {
    transform: scale(1.2); 
    color: #000000;        
}
.men{
    cursor: pointer;
}

.opened{
    top:72px;
}





@media (max-width: 768px) {
    .container{
        align-items: center;
        width: 90%;
    }
    .forumcard, .forumcard2, .forumcard3, .forumcard4, .forumcard5{
        width: 80%;
        height: auto;
    }
    .headbar2{
        display: none;
    }
    
}
@media (min-width: 769px){
    .drawernav{
        display: none;
    }
    .men{
        display: none;
    }
}