/* 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-image: url("static/brillant2.png"); 
    background-repeat: repeat; 
    font-family: inconsolata;
    font-size: 14px;
    margin:0;
    word-wrap:break-word;
    cursor: url('static/cursor.png'), auto;
    overflow: auto;
}

@font-face {
    font-family: 'superscriptregular';
    src: url('static/superscr-webfont.woff2') format('woff2'),
         url('static/superscr-webfont.woff') format('woff');
}

a {
    color:#bc94db;
    text-decoration:none;
}

a:hover {

    color: #bc94db;
    cursor: url('static/cursor.png'), auto;
}
    
b, strong {
color:#fc3c9c}

i, em {
color:#b280d9}

u {
color:#90bfee;
}

p {
margin-top:5px;
margin-bottom:5px}
ol {
list-style:normal;}
ul {
list-style:square;}

h1 {
    font-family: 'superscriptregular', serif;
    font-size: 24px;
    background: -webkit-linear-gradient(left,#a280cd, #fc3c9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
font-size:16px;
text-align:left;
font-style:normal;
line-height:100%;
font-weight:bold;
text-transform:lowercase;
padding:3px;
color:#bc94db;
background: rgba(188,148,219,.15);
border:1px solid rgba(188,148,219,.8);
box-shadow: 1px 1px rgba(188,148,219,.5);
}
h3 {
font-size:16px;
text-align:center;
line-height:100%;
letter-spacing:1px;
color:#Fc3c9c;;
font-weight:normal;
padding:5px;
padding-bottom:1px;
}
/*scrollbar*/
::-webkit-scrollbar {
width: 10px;
height: 10px;
}

::-webkit-scrollbar-thumb {
background: rgb(255, 255, 255);
}

::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.2);
}

div::-webkit-scrollbar {
width: 8px;
background: white;
}

div::-webkit-scrollbar-thumb:vertical {
background: rgba(188,148,219,.5);
border-top: 10px white solid;
border-bottom: 10px white solid;
border-right: 5px white solid;
background-clip: padding-box;
}
/* PAGE BODY */    

.sitename {

    left: 50px;
    text-align: center;
    padding-top:10px;
    display: block;
    margin: auto;
    height: auto;
    width: 450px;
}   

div.container {
    position: relative;
    display: block;
    margin: auto;
    height: 550px;
    width: 450px;
    background-color: #ffffff;
    border: 1px solid #bc8cd6;
    box-shadow: 3px 3px #bc94db;}

div.maintext {
  position: relative;
  height:525px;
  margin: auto;
  overflow: auto;
  padding: 10px;
  
}

div.spacer {
 
 min-height: 50px;
 clear:both;
}

/* NAV BAR */
.navcontain {
position: absolute;
top: 60px;
left:475px;
display: block;

}
#nav {position: absolute;top: 10px;left: 435px;display: block;}

#nav ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#nav li {
border: none;
margin: 20px;
}

#nav li a {
width: 15px;
height: 15px;
margin: 20px;
display:block;
background: rgba(188,148,219,.15);
border:1px solid rgba(188,148,219);
box-shadow: 1px 1px rgba(188,148,219);
font-size:0px;
transition: 0.7s;

}

#nav li a:hover {
width: 100px;
height: 20px;
text-align: left;
color: rgb(252,60,156, 1.0);
background: rgb(252,60,156, 0.15);
border: 1px solid rgb(252,60,156, 1.0);
box-shadow: 1px 1px rgb(252,60,156, 1.0);
font-size: 12px;
font-weight:900;
padding-left: 10px;
line-height:20px;
}         
