/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  overflow: scroll;
  height: 930px;
  background-color: black;
  color: yellow;
  font-family: Century;
}

/* --- TITLE FIX --- */
.title-block {
  position: fixed;
  top: 12px;                 /* moves title near browser address bar */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1000;
}

.title-block img {
  width: 460px;
  margin-bottom: 2px;
}

.title-block p {
  margin: 0;
  font-size: 14px;                 /* base size */
  transform: scale(1.25);          /* ACTUAL size increase */
  transform-origin: top center;
  display: inline-block;
}

/* push main content down so it doesn't overlap fixed title */
.wrap {
  margin-top: 120px;
}

/* --- EXISTING LAYOUT --- */
.container {
  position: relative;
  padding: 0 0 0 55px;
}

#sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  background: #000;
}

#header {
  border: 1px solid #000;
  width: 100px;
  height: 20px;
  margin: 0 0 5px 0;
}

#content {
  border: 1px solid #000;
  width: 100px;
  height: 50px;
  margin: 5px 0 5px 0;
}

#footer {
  border: 1px solid #000;
  width: 100px;
  height: 20px;
  margin: 5px 0 0 0;
}/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  overflow: scroll;
  height: 930px;
  background-color: black;
  color: yellow;
  font-family: Century;
}

/* --- TITLE FIX --- */
.title-block {
  position: fixed;
  top: 12px;                 /* moves title near browser address bar */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1000;
}

.title-block img {
  width: 460px;
  margin-bottom: 2px;
}

.title-block p {
  margin: 0;
  font-size: 14px;                 /* base size */
  transform: scale(1.25);          /* ACTUAL size increase */
  transform-origin: top center;
  display: inline-block;
}

/* push main content down so it doesn't overlap fixed title */
.wrap {
  margin-top: 120px;
}

/* --- EXISTING LAYOUT --- */
.container {
  position: relative;
  padding: 0 0 0 55px;
}

#sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  background: #000;
}

#header {
  border: 1px solid #000;
  width: 100px;
  height: 20px;
  margin: 0 0 5px 0;
}

#content {
  border: 1px solid #000;
  width: 100px;
  height: 50px;
  margin: 5px 0 5px 0;
}

#footer {
  border: 1px solid #000;
  width: 100px;
  height: 20px;
  margin: 5px 0 0 0;
}