@import "style.css";
@import "/css/fontawesome/css/all.css";
@import "/css/jquery-ui.css";

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.d-flex{
    display: flex;
}

body{
    background-color: #000000;
}

.about{
    margin-top: 20px;
    border-top: 1px solid #BFE009 ;
    border-bottom: 1px solid #BFE009 ;
    padding: 10px 0;

}

.txt{
    margin: 10px 200px;
    outline: none;
    padding: 20px;
    background-color: #1F1F1F;
    color: #FFFFFF; 
   
}


.txt p{
    text-align: justify;
}

.about h2{
    color: #000000;
    width: 20%;
    background-color:#839B05 ;
    margin-bottom: 10px;
    padding: 10px;
    transition: 0.5s;
    cursor: pointer;
    border: 3px solid #000000 ;
    outline: 1px solid #BFE009 ;
    font-weight: 700;
    font-size: 25px;
    text-align: center;
}

.about h2:hover{
    width: 100%;
}






/* responsive */

@media only screen and (max-width: 1024px) {
    .txt{
        margin: 10px 20px;
    }
}


@media only screen and (max-width: 768px) {

    .txt h1{
        width: 30%;
    }
    .about h2 {
        width: 100%;
    }
    .about img{max-width: 100%;}
    .about p{text-align: justify !important;}
}


@media only screen and (max-width: 600px) {
    
    .txt h1{
        width: 30%;
    }

}


@media only screen and (max-width: 420px) {
    
    .txt h1{
        width: 50%;
    }
}

