


* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #2C2C2C;
  color: #F5F5F5;
}

header, footer {
  text-align: center;
  background: #1E1E1E;
  padding: 20px;
  border-bottom: 2px solid #E0C097;
}

header h1, footer p {
  color: #E0C097;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

nav a {
  text-decoration: none;
  color: #F5F5F5;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #E0C097;
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  background: #3A3A3A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  text-align: center;
}

.container img {
  max-width: 300px;
  border-radius: 10px;
  margin: 15px 0;
}

table {
  margin: 20px auto;
  border-collapse: collapse;
  width: 80%;
  background: #2C2C2C;
}

th, td {
  border: 1px solid #E0C097;
  padding: 12px;
}

th {
  background: #1E1E1E;
  color: #E0C097;
}

form {
  margin: 20px auto;
  width: 70%;
  text-align: left;
}

label {
  display: block;
  margin-top: 10px;
  color: #E0C097;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 6px;
}

input[type="submit"], input[type="reset"] {
  width: auto;
  background: #E0C097;
  color: #2C2C2C;
  cursor: pointer;
  margin-top: 10px;
}

input[type="submit"]:hover, input[type="reset"]:hover {
  background: #C89F85;
}
