/* 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 {
  color: white;
  font-family: verdana;
  padding: 100px 350px 350px 350px;
  background-image: url("./website_background.png"); 
  background-repeat: repeat; 
  background-size: 516px 516px;
  background-attachment: fixed; 
  background-color: rgb(0, 77, 0);
  cursor: pointer url("./cursor.png");
}
h1, p, h2 {
  text-align: center;
}
.sidebar {
  top: 0;          
  left: 0;         
  width: 200px;     
  background-color: rgb(117, 163, 163);
  overflow-y: auto;
}
.container {
  display: flex;
}
.content {
  flex-grow: 1;
  padding: 15px;
}
a:link {
  color: yellow;
  background-color: transparent;
}
a:visited {
  color: yellow;
  background-color: transparent;
}
a:hover {
  color: orange;
  background-color: transparent;
}
a:active {
  color: red;
  background-color: transparent;
}


div {
  border: 8px solid rgb(208, 208, 225);
  border-radius: 5px;
  background-color: rgb(38, 115, 38)
}
.center { 
  display: block; margin-left: auto; margin-right: auto; width: 50%;
  }
.flexbox {
}