/* Body and fonts */
body {
  margin: 0;
  padding: 0;
  font-family: 'serif', serif; /* gothic serif */
  background-color: #000; /* full black */
  color: #f5f3e7; /* soft candle color */
  cursor: url('fire.png'), auto; /* small flame cursor */
}

.candle-image {
  width: 200px;
  margin-top: 100px;
  cursor: pointer; /* indicates clickable */
  
}
/* Header */
header {
  text-align: center;
  padding: 20px 0;
}

header h1 {
  font-family: 'serif', cursive;
  font-size: 2em;
  color: #f5f3e7;
  text-shadow: 0 0 6px #f5f3e7;
  margin: 0;
}

/* Container layout */
.container {
  display: flex;
  min-height: 80vh;
}

/* Left vertical tabs */
nav {
  width: 150px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

nav a {
  font-size: 1em;
  text-decoration: none;
  color: #f5f3e7;
  margin-bottom: 15px;
  transition: 0.3s;
}

nav a:hover {
  color: #ffdca2; /* soft yellow highlight */
}

/* Main content */
main {
  flex: 1;
  padding: 40px;
}

section h2 {
  font-family: 'serif', cursive;
  font-size: 1.8em;
  color: #f5f3e7;
  margin-bottom: 20px;
}

section p {
  font-size: 1em;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #000;
  padding: 20px;
  color: #999;
  text-align: center;
  font-size: 0.9em;
}


