/* Estilos generales */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  font-family: Arial, Helvetica, sans-serif;
}

/* Contenedor del mensaje */
.mensaje {
  text-align: center;
  color: #f5f5f5;
}

.mensaje h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.mensaje p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Barra estilo obra */
.barra {
  width: 200px;
  height: 10px;
  margin: 1.5rem auto 0;
  background: repeating-linear-gradient(
    45deg,
    #f1c40f,
    #f1c40f 10px,
    #e67e22 10px,
    #e67e22 20px
  );
}