/* assets/style.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #1e1e1e, #2c3e50);
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#pontos {
  font-weight: bold;
  color: #00ffcc;
}

video {
  border: 4px solid #00ffcc;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
  margin-bottom: 1.5rem;
}

button {
  background-color: #00ffcc;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #00e6b8;
  transform: scale(1.05);
}
