div#govern {
    width: 95%;
    margin: auto;
    margin-bottom: 25px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div#govern > img {
    width: 70%;
    border-radius: 10px;
}
div#govnTab {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
}
div#govnTab > span {
    font-size: 18px;
    margin: auto;
    padding: 4px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 1.2s linear 0s;
}
div#govnTab > span:nth-of-type(1) {
    background-color: rgb(206, 206, 206);    
    box-shadow: 7px 7px 10px grey;
    border: 2px solid rgba(0, 0, 0, 0.719);
}
div#govnTab > span:nth-of-type(2) {
    border: 2px solid #0063B2FF;
}
div#govnTab > span:nth-of-type(3) {
    border: 2px solid #d16d7c;
}
div#govnPara {
    width: 70%;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.719); 
    padding: 10px 12px;
    border-radius: 30px;
    transition: all 0.4s linear 0s;
}
div#govnPara > * {
    padding: 10px;
    background-color: rgb(206, 206, 206);
    border-radius: 5px 20px 20px 5px;
    margin-bottom: 15px;
    transition: all 0.4s linear 0s;
}
div#govnPara > span {
    font-weight: 500;
    font-size: 18px; 
    padding: 6px;
    padding-right: 8px;
    border-radius: 5px 20px 20px 5px;
    text-align: center;
}
div#govnPara > p {
    text-align: justify;
}
@media screen and (max-width: 780px) {
    div#govern > img {
        width: 85%;
    }
    div#govnTab {
        width: 95%;
        margin-bottom: 15px;
    }
    div#govnTab > span {
        flex-basis: 80%;    
        margin-bottom: 10px;
        min-width: 247px;
    }
    div#govnPara {
        width: 90%;
    }
}
@media screen and (min-width: 781px) and (max-width: 1100px) {
    div#govern > img {
        width: 80%;
    }
    div#govnTab {
        width: 90%;
    }
    div#govnPara {
        width: 90%;
    }
}
