.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: lightgray;
  padding: 10px;
  width: 50%;
  margin: 0 auto;
}
.status {
  font-size: 20px;
  margin-right: 10px;
}
.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  padding: 20px 40px;
  font-size: 20px;
  color: white;
  background-color: red;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 200px;
}
.button:hover {
  transform: scale(1.1);
}
.disclaimer {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
}
.message {
  text-align: center;
  font-size: 25px;
  padding: 20px;
  width: 50%;
  margin: 0 auto;
}
