/* 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{
  background: black;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1{
  color: silver;
  text-align: center;
  margin-bottom: 20px;
}
  



/* This is for the full height side tab--> i have to remember to start writing notes to indicate where everything is*/
.side-tab {
  height: 100%;
  width: 150px;
  position: fixed; /*this makes the side tab stay in place when someone scrools*/
  z-index: 1; /*stays on the top of the tab*/
 top: 0;/*stay at the top*/
 left:0;
 background-color: black;
 overflow-x:hidden; /*this disables horizontal scrolling*/
 padding-top: 20px;
}

/*navigation links for the side menu */
.side-tab a {
  padding:6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: lightsteelblue;
  display: block;
}

/*for link color*/
.side-tab a:hover {
  color: lightskyblue; 
}

.computer-image{
  width: 600px;
  height: auto;
  border: 2px solid black;
  border-radius: 8px;
}

@media screen and (max-height: 450px) {
  .side-tab {padding-top: 15px;}
  .side-tab {font-size: 18px;}
}
  
  
  



