body {
  margin: 0;
  font-family: Arial, sans-serif;
 background: url("logo.jpg");
  background-size: cover;
  background-position: 0 0;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  0%   { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* HEADER */
header {
  background: linear-gradient(to right,#b30000,#8a0000);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
header img {
  height: 60px;
}
header h1 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

/* NAVBAR */
nav {
  background: #004225;
}
nav ul {
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
  justify-content: center;
}
nav li {
  margin: 0 15px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 900px;
  margin: 20px auto;
}

.card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
h2 {
  color: #b30000;
  border-bottom: 2px solid #b30000;
  padding-bottom: 5px;
}

/* FORM */
label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}
input, select, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #b30000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  background: #8a0000;
}

/* FOOTER */
footer {
  background: #222;
  color: rgb(10, 10, 10);
  text-align: center;
  padding: 12px;
  font-size: 14px;
  margin-top: 30px;
}
