/* google font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500&display=swap');

/* reset css */
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  direction: ltr;
  background-color: #222831;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
}

a {
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

a:hover,
a.active {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  background-color: white;
  border-radius: 10px;
}

li,
ol,
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

/* style file */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.containerFinder {
  text-align: center;
  width: 40%;
  font-weight: 700;
}

.containerFinderTitle {
  color: #dfa612;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.wordArea,
.textArea {
  width: 100%;
  text-align: left;
  margin: 10px 0px;
}

.label {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.formInput,
.fromTextArea {
  border: none;
  background-color: white;
  border-radius: 6px;
  width: 100%;
  color: black;
  font-size: 16px;
  padding: 10px;
  margin: 5px 0px;
}

.formInput:focus,
.fromTextArea:focus {
  outline: none;
  border: 3px solid #dfa612;
}

.formInput {
  height: 40px;
}

.fromButton {
  padding: 10px;
  background-color: transparent;
  border: 3px solid white;
  color: white;
  font-size: 20px;
  border-radius: 10px;
  align-self: center;
  margin-top: 15px;
}

.fromButton:hover,
.fromButton:active,
.fromButton:focus {
  outline: none;
  border: 3px solid #dfa612;
  color: #dfa612;
}

.containerFinderResult {
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .containerFinder {
    width: 80%;
  }
}
