* {
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  background-image: url("backgroundBabyyoda.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header {
  margin-bottom: auto;
  height: 10vh;
  padding: 10px;
}
.header .title {
  font-size: 40px;
  text-align: center;
  color: rgb(0, 0, 0);
  text-shadow: 0.1rem 0.1rem 0.5rem rgb(61, 255, 2);
}

.container {
  position: relative;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  height: 300px;
  width: 300px;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 20px;
}
.container .textInput {
  font-size: 14px;
  padding: 10px;
  border-radius: 20px;
}
.container .paragraph {
  font-size: 25px;
  text-shadow: 0.1rem 0.1rem 0.5rem rgb(61, 255, 2);
  color: white;
}
.container .btn {
  font-size: 17px;
  padding: 5px 30px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 20px;
}
.container .btn:hover {
  background-color: white;
  color: black;
  transition: 0.8s;
}
.container .textTraduzida {
  font-family: sans-serif;
  font-size: 18px;
  margin: 1rem 1rem;
  text-align: center;
  color: white;
  text-shadow: 0.1rem 0.1rem 0.1rem black;
}

.container::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

/*# sourceMappingURL=style.css.map */
