body{
    margin: 0pt;
    padding: 0pt;
    height: 100%;
    background-color: #e3ffc2;
}

h1{
    text-align: center;
    font-family: Verdana, Tahoma, sans-serif;
}

h3, h4, p{
    font-family: Verdana, Tahoma, sans-serif;
    text-align: center;
}


h4{
    margin: 20px;
    font-size: 20px;
}
p{
    margin: 20px;
    font-size: 15px;
}
/**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;
}

.infocard{
    background-color: #68944d;
    width: 1000px;
    height: 600px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 20px;
    box-shadow: #7b8a57 3px 3px 5px;
}

.container1{
    margin: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
}

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){
    .headbar2{
        display: none;
    }
}

@media (min-width: 769px){
    .drawernav{
        display: none;
    }
    .men{
        display: none;
    }
}

@media
    (max-width: 1000px) {
        h4{
            font-size: 15px;
        }
        p{
            font-size: 12px;
        }
        .infocard{
            width: 90%;
            height: auto;
        }
        .headbar2 a{
            width: 90%;
        }
    }
