/* 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." */

/*General Rules*/
* {
    padding:0;
    margin:0;

    box-sizing: border-box;
}

/*Fonts*/
@font-face {
    font-family: "FjallaOne";
    src: url("/fonts/FjallaOne.ttf");
}

/*Page block organization*/
.row{
    display: flex;
}
.column{
    flex: 50%;
}

button{
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif; 
	color: #000000;
	background-color: #c0a5e4;
	font-size: 20px;
	border: 5px solid #5e3cb9;
	border-radius: 15px;
	padding: 10px 20px;
	cursor: pointer
}
button:hover{
	color: #000000;
	background-color: #e6d8f1;
}

hr{
    width: 80%;
    color: rgb(152, 102, 199);
    margin:auto;
}

/*Headers*/
.pageHeader{
    position: relative;

    border-bottom: solid 10px rgb(117, 64, 167);
    background:rgb(72, 28, 114);

    padding: 30px;
    text-align: center;
}
.headerTitle{
    font-family: FjallaOne;
    color:rgb(239, 218, 245);
    font-size: 40px;
}

nav{
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;

    background-color: #e7c5f7;
    border-bottom: solid 5px #7540a7;
}

body {
  background-color: rgb(239, 218, 245);
  color: black;
  font-family: Verdana;

  background-image: url('https://timpaniumbra.neocities.org/images/websiteBG.jpg');

  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
}
.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* General Content Blocks*/
.textbox{ /* Total Block*/
    border: solid 7px rgb(152, 102, 199);
    border-radius: 13px;
    margin-left: 10px;
    margin-right: 10px;

    background-color: white;
}
.textboxHeader{ /*Block Header (Stays on the block regardless of scroll*/
    position: sticky;
    left: 0;
    top: 0;

    background: rgb(152, 102, 199);

    padding: 15px 10px;
    margin: 0;
}
.textboxContent{ /*Actual content*/
    padding: 10px 10px 10px 20px; /*Top, Right, Bottom, Left*/

    overflow-y:scroll;
    scrollbar-width:thin;
    scrollbar-width:thin;
    scrollbar-color:rgb(152, 102, 199) white;
}

h1{ 
    font-family: FjallaOne; 
    font-size: 24px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 26.4px; 
} 

h3{ 
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif; 
    font-size: 14px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 15.4px; 
} 

p{ 
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif; 
    font-size: 14px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 20px; 
}

blockquote{ 
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif; 
    font-size: 21px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 30px;
} 

pre{ 
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif; 
    font-size: 13px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 18.5667px; 
}

footer{
    border-top: solid 10px rgb(117, 64, 167);
    background:rgb(72, 28, 114);

    padding: 5px;
    text-align: center;
}