/* Reset some default styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Navigation styles */
nav {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
}

/* Header styles */
header img {
  border-radius: 50%;
}

/* Article styles */
article {
  text-align: left;
  margin: 20px;
  padding: 10px;
}

article h2 {
  color: #ff5733; /* Red color for headings */
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #333;
}

th, td {
  padding: 8px;
  text-align: left;
}

/* Footer styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

/* Additional styles for the lamp */
.lamp-wrapper-main {
  /* Your lamp styles here */
}

.icon-sun {
  /* Your sun icon styles here */
}

/* Add any other styles you need for specific elements */
