/* css/styles-ace.css */

/* 1) Ensure the page always fills the viewport */
html {
  /* your chain pattern on the root element, tiled forever */
  background: url("../images/chainbackground.jpeg") repeat top left #000;
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
  /* transparent so the html background shows through */
  background: transparent;
}

/* 3) Link colors */
a {
  color: #ff00ff;
  text-decoration: none;
}

/* 4) Layout containers */
#container {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  max-width: 100%;
  margin: auto;
  border: 1px solid #ff0000;
  padding: 1px;
}
#nav, #main, #right-sidebar {
  border: 1px solid red;
  padding: 10px;
}
#nav {
  flex: 43%; /* fixed sidebar width */
  width: 20%;
  height: 800px;
  background-color: black;
}
#section {
  padding: auto;        /* fill remaining width */
}
#main {
  width: 50%;
  background-color: black;
}
#right-sidebar {
  width: 30%;
  background-color: black;
}

/* 5) Headings */
h2, h3 {
  color: yellow;
}
.h3 {
  font-size: 30px;
  text-align: center;
  width: 5000px;
  border: 1px solid #ff0000;
  padding-left: 100px;
    background-color: black;
  }

/* 6) Banner & drip images */
.site-header {
  text-align: center;
  margin: 0; 
  margin-top: 10px;
}
.drip {
  display: block;
  margin: 0 auto;
  width: 1400px;
  height: 27px;
}
.banner {
  width: 800px;
  max-height: 200px;
}

/* 7) Content sections */
  .container {
  border: 4px solid #ff0000;
  padding: 1px;
  }
.update-log {
  color: #a0ff00;
}
.bumperstickers {
  color: #a0ff00;
}
.dog-photos {
  flex: 1px; /* fixed sidebar width */
  width: 100%;
  height: 710px;
  background-color: black;
}
/* 8) Button‐grid images */
.button-grid img {
  display: block;
  margin: 4px auto;
  max-width: 100%;
}

/* 9) Nav links */
.nav-link {
  display: block;
  margin: 5px 0;
}