/* 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." */

/* Global body styles */
body {
  margin: 0;
  background-image: url("sitebg.png");
  background-size: 120%;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Container to center content and limit width */
.container {
  max-width: 900px;   /* adjust this to make site narrower or wider */
  margin: 0 auto;     /* centers the container horizontally */
  padding: 10px;      /* optional space inside container */
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  color: purple;
  font-size: 32px;
  border: 0px solid white;
  margin: 10px 0;
  background-color: #8AFFAA;
}

/* Main layout (flexbox) */
.main {
  display: flex;
}

/* Navbar */
.navbar {
  width: 180px;       /* sidebar width */
  padding: 20px;
  border: 2px solid white;
  margin: 10px;
  background-color: #FFC0CB;
}

.navbar a {
  display: block;
  color: cyan;
  text-decoration: none;
  margin-bottom: 10px;
}

.navbar a:hover {
  color: yellow;
}

/* Content area */
.content {
  padding: 20px;
  flex: 1;            /* fills remaining space */
  border: 2px solid white;
  margin: 10px;
  background-color: #FFC0CB;
}

.navbar a {
  display: block;
  color: cyan;
  text-decoration: none;
  margin-bottom: 10px;
}

.navbar a:hover {
  color: yellow;
}

/* Content area */
.content {
  padding: 20px;
  flex: 1;
  border: 2px solid white;
  margin: 10px;
  background-color: #FFC0CB;
}
