@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=EB+Garamond:wght@400..800&display=swap');

body{
  background: linear-gradient(-45deg, #0000ff, rgb(207,26,252), #800080, rgb(255,0,255));
  margin: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#container{
  width: 90%;
  max-width: 500px;
  height: auto;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 0 5px;
  border-radius: 5px;
  background-color: #ffffff;


}

#content, #content1{
  width: 100%;
  height: 150px;
  opacity: 0.9;
  border-radius: 5px;
  border: 1px solid #cccccc;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  resize: none;
  overflow-y: auto;
}

#content1{
  background: #f0f0f0;
  opacity: 1;
}

#sourceLanguage, #targetLanguage{
  width: 47.5%;
  height: 40px;
  border: none;
  border-radius: 2px;
  margin-top: 5px;
  /*font-size: medium;*/
  /*font-family: "franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;*/
  box-shadow: 0 0 3px;
  background: #ffffff;
  opacity: 0.9;

  font-family: "Cinzel", serif;
  font-size: medium;
  font-weight: 600;
}

#sourceLanguage{
  margin-right: 4%
}

button{
  width: 100%;
  height: 40px;
  /*font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;*/
  /*font-size: medium;*/
  border: none;
  border-radius: 2px;
  margin-top: 10px;
  background-color: #007bFF;
  color: #ffffff;
  box-shadow: 0 0 3px;
  cursor: pointer;
  opacity: 0.9;

  font-family: "Cinzel", serif;
  font-size: medium;
  font-weight: 800;
}

/*.button .translate{*/
/*  background-color: #007bFF;*/
/*  color: #ffffff;*/
/*}*/

/*.button .frontpage{*/
/*  background-color: #FF7b00;*/
/*  color: #ffffff;*/
/*}*/

button:hover{
  opacity: 1;
}

@media(max-width:600px){
  #sourceLanguage, #targetLanguage{
    width: 100%;
    margin-right: 0;
  }
}
