/* reset box sizing */
* { box-sizing: border-box; }

/* body styles */
body {
  
  margin: 0;
  padding: 40px;
  background: #f5f5f5;
  background-image: url("");
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 100%;
  color: black;
  line-height: 1.4;
  font-family: mspgothic;
  font-size: 14px;
  font-weight: 400;
}

/* ===== PAGE WRAPPER ===== */
.Header {
  width: 900px;        /* match your logo/banner width */
  margin: 0 auto;      /* center the whole site */
  background-image: url("//");
  background-color: transparent;
  color: white;
  background-size: 100%;
}




/* full-width (within Header) */
.logo,
.ScrollingBanner {
  width: 100%;
  max-width: 100%;

    background-color:black;
}


.ScrollingBanner {
  position: relative;
  top: -10px;
  left: 0;
  font-size: 15px;
  height: 20px;
  color: white;
  background: black;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  padding: 0; /* remove extra padding so height is consistent */
  overflow: hidden; /* hides anything that might overflow */
  display: flex; /* helps center things vertically */
  align-items: center;
}

/* make the marquee fill the available width/height */
.ScrollingBanner marquee {
  width: 100%;
  height: 100%;
  line-height: 20px; /* match banner height for perfect vertical alignment */
  margin: 0;
  color: BLACK;
  background: PINK;
  border: none;
}


/* ===== LAYOUT: MAIN + SIDEBAR ===== */
.content {
  display: grid;
  grid-template-columns: 180px 1fr;  /* side + main */
  gap: 10px;
  align-items: flex-start;
  margin-top: 60px;
}


/* MAIN */
#main {
  background:  r;/* your original demo color */
  grid-column: 2;
  width: 100%;
  padding: 0;
  border: 0;
  COLOR:black;
}

/* SIDEBAR */
#side {
  grid-column: 1;
  width: 180px;   /* matches the grid sidebar */
  padding: 0;
  border: 0;
   COLOR:black;
}

/* TITLES + BOXES */
.title {
  font: 700 9px/1.2 arial, calibri, sans-serif;
  text-transform: uppercase;
  color: #FFF;
  width: 100%;
  background: #E3F4E2 url(blue.png);
  letter-spacing: 3px;
  padding: 2px 0 0 4px;
  border-bottom: 1px solid #fff;
}

.box {
  background: #D4D0C8;
  width: 100%;
  border-left: 2px solid #666;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #928F88;
  border-top: 2px solid #666;
  padding: 4px;
  margin-bottom: 4px;
  
}

/* optional extras */
h1 { text-align: center; }

/* keep this if you still use it; fixed the comment */
.lancienmain {
  max-width: 900px;
  margin: auto;
  background: white;
  background-image: url(".png");
  background-size: 100%;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
