/* 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." */
   
   
   
   
   @font-face {
  font-family: "grapesoda";
  src: url("GrapeSoda.ttf") format("truetype");
}

body {
    background-color: black;
    color: fuchsia;
    font-family: 'GrapeSoda';
    background-image: url("space.png");                       
    background-attachment: fixed;               
}

.rainbow {
  text-align: center;
  color: white;
  text-shadow:
  -2px 2px red,
  -4px 4px orange,
  -6px 6px yellow,
  -8px 8px green,
  -10px 10px blue,
  -12px 12px purple;
}
.sidebar {
  height: 600px; 
  width: 200px; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  overflow-x: hidden; 
  padding-top: 20px;
  background-color: deeppink;
  border: 4px solid red;
  padding: 50px;
  margin-left: 20px;
  background-image: url("web-bg.png");
}

 .main{
  font-size: 150%;
  background-color: darkslategray;
  text-shadow: -2px 2px navy;
  border: 4px solid navy;
  padding: 50px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: 600px; 
  color: white;
}


.button {
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.button:hover {
  transform: rotate(10deg) scale(1.5);

}