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

 big {font-size: 54px;}
 mid {font-size: 28px;}
 sm  {font-size: 12px;}
 smid  {font-size: 15px;}
 
  
 
  a:link{color:skyblue; text-decoration:none;}
  a:visited{color:skyblue; text-decoration:none;}
  a:hover{color:white; text-decoration:none;}
  a:active{color:skyblue; text-decoration:none;}
  
body {
  background: linear-gradient(black, darkblue);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: skyblue;
  font-family:'tahoma';
  font-size: 18px;
  cursor: url('/cursor.png'),auto;
}

details{
  border-style:solid;
  border-width:2px;
  border-radius:4px;
  background: linear-gradient(black, midnightblue);
  padding:8px;
  
  
  
}

div{
 background-color:black;
 border-radius: 8px;   
 border-style: ridge;
 border-width: 4px;
 border-color: skyblue;
 word-wrap: break-word;
 width:800px;
 height:600px;
 overflow-y: auto;
 overflow-x: hidden;
 padding: 25px;
 margin-top:-4px;
 margin-left:600px;
 margin-bottom:-4px;
 
}

div1{
 background-color: black;  
 border-radius: 8px;   
 border-style: ridge;
 border-width: 2px;
 border-color: skyblue;
 word-wrap: break-word;
 width:800px;
 padding: 4px;
 margin-top:2px;
 margin-left:0px;
 margin-right:0px;
 margin-bottom:4px;
 text-align: left;

}

div2{
 background-color: black;  
 border-radius: 8px;   
 border-style: dashed;
 border-width: 2px;
 border-color: skyblue;
 word-wrap: break-word;
 padding: 4px;
 text-align: center;
}

div3{
 background-color: black;  
 border-radius: 8px;   
 border-style: dashed;
 border-width: 2px;
 border-color: skyblue;
 padding: 4px;
 text-align: center;
}

aside{
  background-color:black;
  border-radius:8px;
  border-style: ridge;
  border-width: 2px;
  border-color: skyblue;
  word-wrap: break-word;
  margin-left:412px;
  width: 8%;
  height: 80%;
  float: left;
  padding:12px;
}
  
div6{
  background: linear-gradient(black, midnightblue);
  border-radius:8px;
  border-style:solid;
  border-color:skyblue;
  border-width:2px;
  word-wrap:break-word;
  padding:12px;
  width:760px;
  height:260px;
  line-height:1em;
  display:inline-block;
  
}
  
