/* css/styles.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;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
}
#nav, #main, #right-sidebar {
  display: block;
  align-content:center;
  border: 1px solid red;
  padding: 10px;
}
#nav {
  width: 10%;
  background-color: black;
}
#main {
  width: 50%;
  background-color: black;
}
#right-sidebar {
  width: 12%;
  background-color: black;
}

/* 5) Headings */
h2, h3 {
  color: yellow;
}

/* 6) Banner & drip images */
.site-header {
  text-align: center;
  margin: 0;
}
.banner,
.drip {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.banner {
  width: 800px;
  max-height: 200px;
}
.drip {
  margin-top: 10px;
}

/* 7) Content sections */
.section {
  border: 1px solid red;
  margin-bottom: 10px;
  padding: 5px;
}
.update-log {
  color: #a0ff00;
}
.bumperstickers {
  color: #a0ff00;
}

/* 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;
}
