/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
}

html,body{
  min-height: 100vh;
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:#0f1724;
  color:#e6eef8;
}

/* --- MENU BAR --- */
.menu {
  width: 100%;
  background: #0f1724;
  padding: 12px 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.menu a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.menu a:hover {
  text-decoration: underline;
}

/* Headings */
h3 {
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 10px 0px 0px 10px;
    padding: 10px;
}

/* Links */
a {
    text-decoration: underline;
    color: #38bdf8;
}

a:hover {
    text-decoration: underline;
}

.container{
  max-width:1150px;
  margin:24px auto;
  padding:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:12px;
  box-shadow:0 6px 30px rgba(2,6,23,0.6);
}

/* Main Content */
.content {
    margin-top: 5px;
    padding: 25px;
}


/* Content Body */
.contentBody {
    font-size: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color:#0b1220;
    border-radius: 10px;
    line-height: 1.6;
    margin-bottom: 20px;
}



/* Footer */
footer {
    width: 100%;
    margin-top: 25px;
    color: white;
    text-align: center;
    height: 15vh;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}


/* Responsive Design */
@media (max-width: 600px){}