@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,700&display=swap');
:root
{
    --primary-color:#facc15;
    --secondary-color:#fde68a;
    --off-white:#fefce8;
}
body{
    font-family: 'Montserrat', sans-serif;
    margin:0px;
}

#btnTranslate
{
    margin: auto;
    display: block;
    height: 50px;
    width: 100px;
    padding: auto;
    background-color: var(--primary-color);
    font-family: inherit;
    border-radius: 1rem;
    border-color: var(--secondary-color);

}
#subheading1
{
    margin: 1rem;
    text-align: center;
}
#txtInput
{
    font-family: inherit;
    margin: 1rem auto;
    padding: 1rem;
    height: 9rem;
    width: 15rem;
    display: block;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 1rem;
    font-size: small;
}
#output
{
    margin: 1rem auto;
    padding: 1rem;
    border: 1px solid var(--off-white);
    background-color: var(--secondary-color);
    height: 9rem;
    width: 15rem;
    display: block;
    border-radius: 1rem;
    font-size: small;
}
.Header-Section
{
   background-color: var(--primary-color);
   border-bottom-left-radius: 1rem;
   padding: 1rem;
 
}
.footer
{
    background-color: var(--primary-color);
    bottom: 0;
    padding: 1rem;
    border-top-right-radius: 1rem;
}

.footer p
{
    
    padding: 2rem;
    margin: auto;
    text-align:justify;
    width: Auto;
}
/* position: fixed;
bottom: 0;
width: 100%;
padding: 1rem;
background-color: var(--primary);
text-align: center; */