body {
  font-family: 'Roboto Mono', monospace;
  text-align: center;
  color: white;
  background-color: #3f3f3f;
}

h1 {
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 24px;
}

.container {
  text-align: center;
  padding: 20px;
}

.page-title {
  margin: 0 0 5px;
}

.page-subtitle {
  margin-top: 5px;
}

.page-logo {
  max-width: 180px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  filter: opacity(0.5);
}

body > img {
  margin: 0 10px;
}

img {
  max-height: 250px;
}

.entrada {
  display: grid;
  gap: 20px;

  justify-items: center;
}

input {
  padding: 18px 16px;
  border: 0;
  border-radius: 10px;
}

label {
  font-size: 24px;
}
button {
  padding: 12px;
  border-radius: 5px;
  background-color: blueviolet;
  border: 0;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  transition: 0.5s;
  transform: scale(1.05);
}
