body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main{
    flex : 1;
}


h1{
    text-align: center;
    color: chocolate;
}
.grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    padding: 0 10px;

}
@media(min-width:675px){
    .grid{
        grid-template-columns: 50% 50%;
        max-width: 800px;
        margin: 0 auto
    }
}
h2{
    font-size:40px;
    margin: 20px;
    color: chocolate;
}
body{
    background-color: linen;
}
.navbar ul{
    list-style-type: none; /*bullet point remove*/
    background-color: rgb(255, 200, 134);
    padding: 0%;
    margin: 0%;
    display: flex;
    justify-content: space-between;
    border-radius: 10px ;
    

}
.navbar a{
    color: brown;
    text-decoration: none; /*underline gone*/
    padding: 15px;
    display: flex;
    text-align: center;
    font-size: large;
}
.navbar{
    margin: 0vh;
    padding: 0%;
}
.Card{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    margin: 1px;
    background-color: rgba(248, 193, 110, 0.397);
    padding: 3px;
    width: clamp(280px, 90%, 400px);
    height: 50px;
    border-radius: 0.5cap;
    cursor: pointer;
}
.chapter{
    margin: 5px;
    font-size: small;
    text-decoration: none;
    color: brown;
    
}
.Card:hover{
    background-color: rgba(203, 40, 40, 0.216);
}

.Card1{
    font-size: small;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin:20px;
    background-color: rgba(255, 208, 137, 0.397);
    padding: 3px;
    overflow-wrap: break-word;
    border-radius: 0.5cap;
    
}

.Card1 h3{
    color: #a14008;
    overflow-wrap: break-word;
    word-break: normal;

}
h3{

    margin: 4px 10px;
}
/* .container{
    text-align: left;
    
   
    display: grid;
    grid-template-columns: repeat(2 ,1fr);
    gap: 15px;
    
    font-size: large;
    padding: 10px;
    padding-left: 20px;
    
} */
 .container{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
    padding: clamp(8px,3vw,20px);
    font-size: medium;
    text-align: left;
}
.chpul{
    font-size: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}
.Ans{
    text-align: left;
    transform: translate(0px);
}
@media(min-width:768px){
    .Card1{
        max-width: 600px;
        margin: 7vh auto;
    }
}

.Tagline{
    font-size: 0.9rem;
    color: #a14008;
    text-align: center;
    margin-top: -12px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.Description{
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 10px 0 25px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
button{
    
    margin-right: 10px;
    border: none;
    background-color:rgb(255, 200, 134);
    display: flex;
    align-items: center;
    font-size: large;
    color: #a14008;
    border-radius: 10px;
    cursor: pointer;

}
footer{
    display: flex;
    margin-top: 50px;
    padding: 20px;
    background-color: rgb(255, 200, 134);
    color: white;
    text-align: center;
    border: none;
    justify-content: space-between;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 7px;
}
footer a{
    
    list-style-type: none;
    text-decoration: none;
    color: #a14008;
}
.Privacy{
    color: #c54c07;
    margin: 0px;
}
.home-btn{
    color: #c54c07;
}
.showAns {
    background-color: rgb(255, 200, 134);
    padding: 4px;
    font-size: small;
    border-radius: 5px;
}
.Email{
    color: #c54c07;
}