/* 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: "ComicSans";
  src: url("/css/fonts/COMICSANS.woff2") format("woff2"),
       url("/css/fonts/COMICSANS.woff") format("woff"),
       url("/css/fonts/COMICSANS.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  background-image: url("/graphics/prezbac.gif");
  background-size: 10vw auto;
  color: blue;
  font-family: "ComicSans", Verdana, sans-serif;
  font-display: swap;
}

html, 
body, 
#background { 
  width: auto;
  height: auto;  
}

body {
margin: 0;
}

#mysillyid {
  width: 100%;
  height: 151px;
  border-radius:5%;
}

.navbar {
color: white;
width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #463e7a;
  background-color:#625a9e;
  padding: 3px 3px 8px 3px;

  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar select {
  white-space: nowrap;
}

.page {
width: 1024px;
margin: 0 auto;
}

.header {
color: white;
width: 97.66%;
margin-left: 1.17%;
border: 2px solid #463e7a;
background-color:#625a9e;
}

.normaldiv {
width: 100%;
height: auto;
color: white;
border: 2px solid #463e7a; 
background-color:#625a9e;
border-radius: 0%;  
}

.indexnestinglittledivs {
height:auto;
width: 97.66%;
margin-left: 1.17%;
display: flex;
gap: 10px;
}

.indexnestedlittledivs {
  color: white; 
  border: 2px solid #463e7a;
  background-color:#625a9e; 
  width: 33%;
  height:auto;
  gap:10px;
}


.indexpfp {
color: white; 
border: 2px solid #463e7a;
border-radius: 0%; 
margin: auto; 
float: left; 
height:104px; 
}

.normalp {
color: white; 
width: 100%;
border: 2px solid #463e7a;
background-color:#625a9e;
padding: 3px 3px 8px 3px;
}

.blogscrollbox {
border: 2px solid #463e7a;
background-color:#625a9e;
height: auto;
width:100%; 
overflow:auto;
}

.blogscrollbox details {
color: white;
width:100%;
border: 2px solid rgba(140, 140, 140, 0.25);
}

div {
 width: auto;
 height: auto;
}

p {
 width: auto;
 height: auto;

}

ul {
 width: 200;
 height: 40;

}

li {
 width: 200;
 height: 40;
}


/* unvisited link */
a:link {
  color: #6384B5;
}

/* visited link */
a:visited {
  color: #316B7B;
}

/* mouse over link */
a:hover {
  color: #9C735A;
}

/* selected link */
a:active {
  color: #8C2963;
}
  

/*
h1 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h2 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h3 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h4 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h5 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h6 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
h7 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: yellow;
}
p {
  -webkit-text-stroke-width: 0.9px;
  -webkit-text-stroke-color: orange;
  
*/