/* paste all of the content inside <style> into style.css + include the the above /style.css code to get the same look on all your pages */

/* if you wish to have a solid colour, remove background-image! */
body {
  background: #00000;
  background-image: url('background link here');
  background-repeat: repeat-y repeat-x;
  font-family: times;
  font-size: 80%
} 
 
.container{
  width:500px;
  background-color:white;
  margin-left: auto;
  margin-right:auto;
  border: 1px solid #ccc;
  height:700px
  }
  
.container2{
  width:460px;
  background-color:white;
  margin-left: auto;
  margin-right:auto;
  border: 1px solid #ccc;
  height:50px;
  padding:20px;
  overflow:auto;
  }

.tab {
  width:100px
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  height:280px;
  padding: 0px 15px 15px;
  border-top: none;
  text-align:center; /* change to left if you don't like centered text */
  overflow: auto;
}
