@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

*::after, ::before {
  box-sizing: border-box;
}

::-moz-selection {
  background: #4CAF50;
  color: #fff;
}

::selection {
  background: #4CAF50;
  color: #fff;
}

body {
  width: 100%;
  height: 100lvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body a {
  text-decoration: none;
  color: #4CAF50;
  cursor: pointer;
}
body a::after {
  content: "»";
  font-size: 10px;
  top: -1px;
  color: #4CAF50;
}
body .container {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 10px;
  gap: 5px;
}
body .container .text {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
body .container .text h1 {
  font-size: 24px;
  color: #121212;
}
body .container .text p {
  font-size: 18px;
  color: #121212;
}
body .container .text label {
  font-size: 10px;
  color: #121212;
}
body .container .search {
  width: 100%;
  height: 40px;
}
body .container .search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  text-align: center;
}
body .container .result {
  width: 100%;
  height: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.5s cubic-bezier(0.87, -1.38, 0.03, 1.54);
}
body .container .result img {
  width: 40%;
  mix-blend-mode: darken;
}
body .container .result.box {
  height: 200px;
}
body .container .btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
body .container .btns .btn {
  height: 40px;
  border: none;
  outline: none;
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
  flex: 1;
  opacity: 0.8;
  pointer-events: none;
  border-radius: 5px;
}
body .container .btns .btn::-moz-selection {
  background: #fff;
  color: #4CAF50;
}
body .container .btns .btn::selection {
  background: #fff;
  color: #4CAF50;
}
body .container .btns .btn.download {
  filter: grayscale(1);
}
body .container .btns .btn.valid {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */