/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

*
{
    margin: 0;
    padding: 0;
}

.container
{
    width: 100%;
    height: auto;
}

.row
{
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
}
.col
{
    flex: 1;
    box-sizing: border-box;
}

/*Nav Bar style*/
.nav-bar
{  position: sticky;
    background-color: beige;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 40%;
}

.nav-bar li
{
    list-style: none;
    color: black;
  
    
}
.nav-bar a{
    text-decoration: none;
    color: black;
    font-size: x-large;
}

/* Main*/
.Chat-Body
{
    width: 100%;
    height: 100%;
    margin: 20px;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}
.main-body
{
    width: 30%;
}
.chat-img img
{
   width: 40%;
   height: 40%;
   margin-left: 100px;
}

.chat-sec
{ 
    display: flex;
    flex-direction: column;
    width: 70%;
    box-sizing: border-box;
}

#chat-result
{
    width: 100%;
    height: auto;
}

#send
{
  background-color: rgb(25, 255, 25);
  width: 70px;
  height: 30px;
  border-radius: 3px;
}

#propmt-text
{
    width: 80%;
    height: 30px;
}

/* Footer*/
.footer img
{
    width:100%;
    height: 20%;
}


.feed-cont
{
    width: 50%;
    height: 50%;
    background: linear-gradient(300deg,rgb(241, 255, 44),rgb(102, 255, 102),rgb(48, 200, 255));
    margin: 40px;
}








/* help section */

.help-container{
    align-items: center;
    justify-content: center;
}
#tb{
   width: 50%;
   height: 80%;
    /* margin-left: 22rem;
    margin-right: 10rem;*/
    margin-top:10rem; 
    background-color: aquamarine;
}
#tb tr th{
            background-color: bisque;
            font-size: larger;
            
}
#tb tr:nth-child(odd){
    background-color: aqua;
    
}

  
  
  

/*About Section*/
.abt
{
    background-image: url("../Img/abtbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
   background-blend-mode: lighten;
    background-color: rgba(rgb(222, 222, 222),white, 0.5);
}
.abt-title h2{
    font-family:"Bebas Neue", sans-serif;
    color: white;
    font-size: 60px;
}
.abt-sec
{
    margin: 20px;
}
.img-sec
{
    width: 50%;
    margin: 30px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.img-sec .abt-img
{
    width: 300px;
    height: 300px;
    align-content: center;
}
.text-sec
{
    width: 50%;
    background-color: rgb(255, 255, 255);
    align-content: center;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family:  "Libre Baskerville", serif;
    padding: 20px;
    border-radius: 30px;
    margin-right: 20px;
}

.description
{
    margin: 20px;
    color: aliceblue;
    font-family: "Libre Baskerville", serif;
    background-color: black;
    border-radius: 40px;
    padding: 20px;
}

/* Chat Result*/
#chat-result
{
    height: 50vh;
    border-radius: 4px;
    border: 2px solid black;
    box-sizing: border-box;
}