* {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(to right, #85b7c7, #d34fed 50%);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  transform: translate(-50%, -50%);
  width: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em;
  border-radius: 10px;
}

button {
  background-color: #454f72;
  padding: 1em;
  border: none;
  font-weight: bold;
  box-shadow: 1px 1px 6px rgb(12, 11, 54);
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(45, 36, 18);
  color: white;
}

.resultado,
.dados {
  display: none;
}

input {
  padding: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
}

#resultado {
  font-size: 25px;
}

img {
  height: 25em;
}

footer {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  text-align: center;
  font-size: small;
  width: 100%;

}