*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(255, 251, 240);
    height: 100%;
    width: 100%;
}

.btn{
    width: 60%;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px 5px 0 7px;
    background-color:  #66545E;
    max-width: 800px;
} 

.col-lg-12{
    align-items: center;
    margin: 10px;
}

.heading{
  font-family: "Playwrite AU QLD", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color:  #66545E;
  padding: 10px;
  text-align: center;
}

.ans{
    color:  #66545E;
    margin: 5px 10px ;
    width:55%;
    max-width: 700px;
    text-align: justify;
    display: flex;
    align-items: end;
}

.anim{
    animation-name:anstrans;
    animation-duration:0.50s;
}
@keyframes anstrans{
    40%{
        /* transform: translateY(-20px); */
        color: transparent;
    }
    50%{
        transform:translateY(20px);
    }
}

.ans .btn{
    padding: 5px;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 40px;
    background-color:#66545E ;
    border: none;
    border-radius: 5px;
}

