body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  padding: 40px;
}

.navbar nav a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #00e0ff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  text-align: center;
}

h1{
  font-size: 48px;
}

h2 {
  margin-top: 30px;
}

.div {
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 20px 20px;
  margin: 20px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

p {
  color: #dcdcdc;
  line-height: 1.6;
  font-size: 15px;
}

code, pre {
  background-color: rgba(0, 0, 0, 0.7);
  color: #6cc3d2;
  padding: 10px;
  display: block;
  border-radius: 8px;
  margin: 10px 0;
  font-family: 'Courier New', monospace;
  overflow-x: auto;
}

button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  background-color: #00e0ff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 50px;
}

button:hover {
  background-color: #00b8cc;
}

pre {
  background: rgba(255, 255, 255, 0.1);
  color: #00e0ff;
  padding: 16px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h4 {
  font-size: 20px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 10px;
} 

/* List formatting */
ul {
  margin: 0 0 20px 20px;
  padding-left: 20px;
  list-style: disc;
}

li {
  color: #dddddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

code {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 3px 6px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: #00e0ff;
  font-size: 14px;
}

/* Code formatting for inline variables like `readcount` */
.inline {
  display: inline; /* Ensures it stays in line with text */
  background-color: rgba(255, 255, 255, 0.15);
  padding: 3px 6px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: #00e0ff;
  font-size: 14px;
  white-space: pre-wrap; /* Prevents breaking due to long content */
}