* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  background-color: #2c2c2c;
  color: #f0f0f0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  padding: 20px;
}

a {
  color: #4da6ff;
  text-decoration: none;
}
a:hover {
  color: #80c1ff;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

button,
input[type="button"],
input[type="submit"] {
  background-color: #444;
  color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: #555;
  transform: translateY(-2px);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background-color: #444;
  color: #f0f0f0;
  border: none;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table, th, td {
  border: 1px solid #555;
}
th, td {
  padding: 10px;
  text-align: left;
}
