body {
  background-color: #f6f6ff;
  font-family: "Roboto", sans-serif;
}
a {
  color: #2e65a5;
}

.container {
  background: radial-gradient(
    circle at -2.2% -3.8%,
    rgba(255, 227, 2, 0.41) 0%,
    rgb(59, 188, 241) 100.2%
  );
  max-width: 900px;
  margin: 120px auto;
  border: 1px #5dc6f1;
  border-radius: 15px;
}
header {
  margin-bottom: 15px;
}
h1 {
  text-align: center;
  color: white;
  line-height: 2;
  font-size: 45px;
  font-weight: 500;
}
.form-container {
  padding: 20px;
  margin-bottom: 20px;
}
form {
  display: flex;
}

.input-word {
  width: 75%;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  margin-left: 25px;
  font-family: "Roboto", sans-serif;
  background-color: white;
}

.new-word-button {
  width: 15%;
  margin-left: 30px;
  padding: 15px;
  border: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 18px;
  color: #757575;
  font-family: "Roboto", sans-serif;
}
.example {
  margin-left: 30px;
  margin-top: 0;
  color: white;
  font-weight: 600;
  line-height: 1.5;
  font-size: 14px;
}
.new-word {
  margin-left: 50px;
  font-size: 30px;
  color: white;
  font-weight: 400;
  line-height: 1.5;
}

.new-word strong {
  color: #2e65a5;
}

footer {
  margin-top: 15px;
  text-align: center;
  padding: 30px;
  color: white;
  font-weight: 400;
}
.translating {
  animation: blink-animation 2s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
