/* 
  bg-color: rgb(234 237 240)
  text-color: black
  blue: rgb(76 100 242)
  light-blue: rgb(128 176 255)
*/

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 16px;
  font-family: "Inter", sans-serif;
  background-color: rgb(234 237 240);
}

h1 {
	font-size: 20px;
	color: white;
  text-transform: uppercase;
}

input {
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border-radius: 8px;
  border: none;
}

button {
  padding: 8px 16px;
  background-color: rgb(128 176 255);
  font-size: 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.container {
  max-width: 520px;
  margin: 0 auto;
}

.logo {
  border-radius: 16px;
}

.panel {
  background-color: rgb(76 100 242);
  padding: 16px;
  border-radius: 16px;
}

.translation {  
  background-color: white;
  margin-bottom: 16px;
}

.translation-result {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.translation-text {
  font-size: 32px;
}

.translation-flag {
  position: absolute;
  font-size: 32px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.text-input {
  width: 100%;
}