body {
   margin: 0%;
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
  }

.img{
    background-image: url("yoda4.jpg");
    display: block;
    background-position: fixed;
    background-size: cover;
    background-repeat: no-repeat;

}

  .nav{
    background-color: rgba(240, 235, 228, 0.409) ;
     height: auto;
     width: 100%;
     border-bottom: 5px solid black;
     border-bottom-left-radius:1rem;
     border-bottom-right-radius:1rem;
    
     margin: 0%;
     padding: 0%;
 }
 
 .nav-heading{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
     padding-top: 1.5rem;
     font-weight: bolder;
     font-size: 3rem;
 
 }

 
#text-input{
    background-color: rgba(240, 235, 228, 0.237) ;
    font-weight: bolder;
    font-family:'Courier New', Courier, monospace;
    font-size: 25px;
    border-radius: 1rem;
    border-width: 4px;
    padding: 1rem;
    height: 10rem;
    width: 50rem;
}


.txtarea1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
   
}

.txtarea2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0rem;
}

#output{
    background-color: rgba(240, 235, 228, 0.091) ;
    font-weight: bolder;
    border: 4px solid gray;
    border-radius: 1rem;
    height: 10rem;
    width: 50rem;
    padding: 2rem ;
    font-family:'Courier New', Courier, monospace;
    font-size: 25px;
   
}



::placeholder{
    font-size: 1.5rem;
    padding-left: 1rem;
}

#btn-translate{
    background-color: rgba(240, 235, 228, 0.091) ;
    font-weight: bolder;
    padding: 0.5rem 1rem;
    border: 1px solid black;
    border-radius: 0.7rem;
    font-size: larger;
    border-bottom: 7px solid black;
    border-left: 7px solid black;

}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

.footer{
    background-color: rgba(200, 234, 233, 0.571) ;

    
    border-top: 5px solid black;
    border-top-left-radius:1rem;
    border-top-right-radius:1rem;
    width: 100%;
    /* border-radius: 1rem; */
    
}

.footer-content{
    padding: 0rem 0rem;
    font-size: larger;
    font-weight: bold;
}

h1{
    display: flex;
    justify-content: center;
    align-items: center;
}

p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem;
    font-size:large;
}

.p1{
    padding-bottom: 0rem;
    font-size: 40px;
    font-weight: bolder;
    font-family:serif;
}



#btn-translate{
    background-color: rgba(240, 235, 228, 0.091) ;

    color: black;
    transition: background-color 0.5s;
  }
  
  #btn-translate:hover {
    background-color: rgba(240, 235, 228, 0.091) ;

    font-size: 1.5rem;
  }
  
  #btn-translate:focus,
  #btn-translate::content{
    background-color: rgba(240, 235, 228, 0.091) ;

    transition: none;
  }