:root{
    --banana-color:#ffe135;
    --font-color : #000000;
}
body{
    margin: 0px;
    font-family: 'Alkatra', cursive;
}
.main{
  display: flex;
  justify-content: center;
  align-items: center;

}
h1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--banana-color);
    margin: 0px;
    padding: 20px;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 2em;
  height: calc(100vh - 270px); 
}

#inputtext{
        display: block;
      margin: 20px auto ;
        width: 500px;
        height: 70px;
        resize: none;
        cursor: pointer;
        text-align: center;
        padding-top:3em;
        font-family: 'Alkatra', cursive;
        font-size: large;
        
}

#inputtext::placeholder{
  font-family: 'Alkatra', cursive;
  text-align: center;

}

#btn-translate{
    display: block;
    margin: 20px auto;
    width:200px;
    height: 30px;
    font-family: 'Alkatra', cursive;
    background-color: var(--banana-color);
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 0px;
    cursor: pointer;
    
}

#btn-translate:hover{
  background-color: #f3e387;
}

textarea:focus {
    outline: none;
  }
.instruction{
    display: flex;
    justify-content: center;
}

#outputtext{
margin: 20px auto;
    width: 500px;
    height: 70px;
    overflow: scroll;
    border: 1px solid black;
    text-align: center;
    padding-top: 2em;
    color: var(--font-color);
    font-size: large;
}

footer{
  position: fixed;
    background-color: var(--banana-color);
    padding: 5px;
    bottom: 0;
    width: 100%;
}

footer div{
display: flex;
justify-content: center;
font-weight: bold;
text-align: center;
padding-top: 10px;
}

footer p{
    text-align: center;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .links button {
    margin: 10px 40px;
    width:150px;
    height: 30px;
    font-family: 'Alkatra', cursive;
    background-color: var(--banana-color);
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 0px;
    cursor: pointer;
    
  }
  
  .links button a {
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    color: var(--font-color);
  }

  .link:hover{
    background-color: #f3e387;
  }