:root{
    --dothraki-color:brown;
    --font-color : #000000;
}

body{
    margin: 0px;
    font-family: 'Alkatra', cursive;
    background-image: url("https://cdn.dribbble.com/users/2454033/screenshots/4897373/media/b7ac8c9ba97bbeb05deb02fc95651344.png?compress=1&resize=768x576&vertical=top");
    background-position: center center; 
    background-repeat: no-repeat;
    height: 100%;
    background-size: 100% 100%; 
}


h1{
    display: flex;
    justify-content: center;
    background-color: var(--dothraki-color);
    margin: 0px;
    padding: 25px;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: calc(100vh - 270px); 
}

#inputtext{
    display: block;
    margin: 15px auto ;
    width: 500px;
    height: 100px;
    resize: none;
    cursor: pointer;
    text-align: center;
    padding-top:2.8em;
    font-family: 'Alkatra', cursive;
    font-size: large;
    background-color: #AEAEAE;
}

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

}

#btn-translate{
    display: block;
    margin: 20px auto;
    width:150px;
    height: 50px;
    font-family: 'Alkatra', cursive;
    background-color: var(--dothraki-color);
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 0px;
    cursor: pointer;
    
}
#btn-translate:hover{
    background-color:rgb(228, 60, 60) ;
  }

textarea:focus {
    outline: none;
}

#outputtext{
    margin: 20px auto;
    width: 500px;
    height: 100px;
    border: 1px solid black;
    text-align: center;
    padding-top: 2.5em;
    color: var(--font-color);
    font-size: large;
    background-color: #AEAEAE;
}

footer{
    background-color: var(--dothraki-color);
    padding: 5px;
    position: fixed;
    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;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .links button {
    margin: 10px 40px;
    width:150px;
    height: 30px;
    font-family: 'Alkatra', cursive;
    background-color: var(--dothraki-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:rgb(228, 60, 60) ;
  }
