body {
  margin: 0;
  padding: 0;
  font-family: Verdana, sans-serif;
  background-color: black;
  color: white;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: black;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  color: palegreen;
  font-size: 28px;
  margin-bottom: 20px;
}

p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 18px;
  color: white;
}

a {
  margin-top: 30px;
  color: palegreen;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

a:hover {
  color: limegreen;}
  .btn-voltar {
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  color: white;
  background-color: #32cd32;
}

.btn-voltar:hover {
  transform: scale(1.1);
}
