/* declarations */
.jacquard {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

@font-face {
	font-family: 'pixelTimes';
	src: url('Pixel Times.ttf');
}
@font-face {
	font-family: 'pixelTimesBold';
	src: url('Pixel Times Bold.ttf');
}

/* general text template and em */
body { 
	background:#f9e3ef 
		url("pinkbg.jpg") 
		no-repeat 
		right top
		fixed;
	font-size: 20px;
	color: black; 
	font-family: 'pixelTimes';
} 



/* Header and body text classes */
.headding {
	font-size: 1.1em;
	font-weight: 10px;
	font-family: pixelTimesBold;
	color: #543638;
	
}

.body {
	font-size: 0.75em;
	text-indent: 5px;
}

* {
  box-sizing: border-box;
}


/* PAGE HEADERS */
/* Banner */
.banner {
	margin: auto;
	width: 80%;
	min-width: 50%;
	height: 150px;
	background-image: url("images/cloudy_banner.jpg");
 	background-repeat: no-repeat;	
	background-size: cover;
	background-attachment: scroll;
	text-align: center;
	color: #f1f1f1;
	font-size: 2em;
	padding: 15px 5px 5px 15px; 
	margin-bottom: 0px;
	border:2px solid HotPink;
	border-radius: 15px;
}

/* Navbar */
ul.topnav {
	position: sticky;
	display: flex;
	align-items: left;
	justify-content: flex-start;
	top: 0;
	width: 80%;
	min-height: 58px;
	height: auto;
	border:2px solid #5f3750;
	list-style-type: none;
	margin: auto;
	margin-bottom: 5px;
	padding: 5px 5px 7px 5px; 
	background-color: #f2c9d5;
	background-image: url("pinkbg.jpg");	
	background-attachment: scroll;
	overflow: visible;

}

ul.topnav li {
	float: none;
	border:2px inset #efacc0;
}


/* Navbar buttons and dropdown button*/
ul.topnav li a, .dropbtn {
	display: block;
	font-family: 'pixelTimes';
	color: #5f3750;
	text-align: center;
	padding: 5px 16px;
	text-decoration: none;
}

/* Navbar buttons on hover */
ul.topnav li a:hover, .dropdown:hover .dropbtn {
	background-color: #f4e1e7;
	border:2px indent #f2c1f4;
	color: #381926;
}

/* Navbar button when on page */
ul.topnav li a.active {
	background-color: #e8a9bc;
	border:2px indent #f2c1f4;
	color: #f9e8ed;
}


li.dropdown {
	position: relative;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  
  background-color: #f9f9f9;
  border: 2px solid #5f3750;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  
  padding: 0;
  min-width: 160px;
  z-index: 1;
}

/* Links in dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a + a {
  border-top: 2px solid #9b6b89;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}



/* PAGE COLUMNS */
div.page_columns {
	display: flex;
	margin: auto;
	width: 80%;
	flex-direction: row;
	gap: 0px;
}


/* Bars */
div.leftbar, div.rightbar {
	flex: 0 0 400px;
	background-image: url("pinkbg.jpg");	
	background-attachment: scroll;
	font-size: 0.75em;
	color: #543638;
	text-align: center;
	border-top:2px solid #5f3750;
	border-bottom:2px solid #5f3750;
	border-right:2px solid #5f3750;
	border-left:2px solid #9b738c;
}
/* Centre Page */
div.page {
	flex: 1;
	background-color:rgba(250, 230, 230, 0.2);
	border-top:2px solid #5f3750;
	border-bottom:2px solid #5f3750;
	border-left:2px solid #5f3750;
	padding: 10px 5px 2px 10px;
}


div.pinkbox {
	display: inline-block;
	width: 97%;
	background-color:rgb(250, 180, 220, 0.2);
	border:2px solid HotPink;
	padding: 0px 10px 0px 10px;
	color:rgb(95, 55, 80);
}


/* Under construction element */
span.construction {
	overflow: hidden;
	display: block;
	border:4px dashed black;
	background-color:rgba(230, 220, 90, 0.7);
	width: 465px;
	margin: auto;
	padding: 0px 15px 5px 15px;
	font-size: 0.7em;
	color: black;
	text-shadow: 0 0 1px #000000;
	text-align: center;
	
}

/* Spelling mistake underline */
.spellcheck {
	text-decoration-line: underline; 
	text-decoration-color: red; 
	text-decoration-style: wavy;"
}





 /* unvisited link */
a:link {color: #645dea;}

/* visited link */
a:visited {color: #8684ba;}

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

/* selected link */
a:active {color: blue;} 


test:link, test:visited {
  background-color: white;
  color: black;
  border: 2px solid green;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

test:hover, test:active {
  background-color: green;
  color: white;
}



p {font-size: 1em;}

img.blinkie {
width: 10%;
height: 1%;
}


#para1 {
  font-size: 8px;
  text-align: center;
  color: red;
}