body {
	background-image: url("https://64.media.tumblr.com/4f3462cf7754229ea31ff5078833402f/00e53650586036f5-ce/s1280x1920/fdfece1057a74e1a7ea699680cad7d68186bdf84.webp");
  background-repeat: repeat;
	margin: 0;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'lato', Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
  color: #3b3477;
  cursor: url('https://64.media.tumblr.com/f4dc10a1d946a74b30865b0aba74bab0/tumblr_inline_mv6m8cAB8U1r63cto.gif'), auto;	
}

	/* Firefox scrollbar */
	scrollbar-width: thin;
	scrollbar-color: #c894e8 #f3e8fb;
}

/* Basic Stlings */

a:link,
a:visited,
a:active {
	color: #499657;
	cursor: normal;
	text-decoration: none;
  transition: color 0.3s ease-in-out;
  cursor: url("https://64.media.tumblr.com/f4dc10a1d946a74b30865b0aba74bab0/tumblr_inline_mv6m8cAB8U1r63cto.gif"), pointer;
}

a:hover {
	color: #888;
	text-decoration: underline;
}

b {
	font-weight: bold;
	font-style: normal;
}

i {
	color: #97ED27;
	letter-spacing: 1px;
	font-family: monospace;
	font-size: 9px;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}

u {
	text-decoration: none;
	font-style: italic;
}

.boxtitle {
	text-transform: none;
	font-weight: bold;
	border-bottom: 1px solid #8DB9FB;
	margin-bottom: 6px;
	padding-top: 2px;
	letter-spacing: 3px;
	font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
	padding-left: 5px;
  color: #3b3477;
}

h1 {
  font-family: "Pixelify Sans", sans-serif;
  color: #29599b;
  display: block;
  padding: 4px 3px 3px 12px;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
  background-color: #8DB9FB;
  border-radius: 12px;
  border-bottom: 3px solid #6b9ce5;
}

h2 {
  font-family: "Pixelify Sans", sans-serif;
  color: #2e4591;
  display: block;
  padding: 4px 3px 3px 12px;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
  background-color: #A9B9FB;
  border-radius: 12px;
  border-bottom: 3px solid #8da1ef;
}

h3 {
  font-family: "Pixelify Sans", sans-serif;
  color: #5c4aad;
  display: block;
  padding: 4px 3px 3px 12px;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
  background-color: #C5B7FB;
  border-radius: 12px;
  border-bottom: 3px solid #a695ed;
}

/* Standard syntax */
::selection {
  background-color: #E8E2FF; /* The highlight color */
  color: #3b3477;            /* The text color */
}

/* For Firefox support */
::-moz-selection {
  background-color: #E8E2FF;
  color: #3b3477;
}

/* Chrome, Edge, Safari scrollbar */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: #dbe6f9;
	border-radius: 999px;
}

::-webkit-scrollbar-thumb {
	background: #dbe6f9;
	border-radius: 999px;
	border: 2px solid #f3e8fb;
}

::-webkit-scrollbar-thumb:hover {
	background: #dbe6f9;
}

.container {
	width: 800px;
	height: 660px;
	display: grid;
	grid-template-columns: 190px 1fr 1fr 1fr;
	grid-template-rows: 90px auto auto 1fr 32px;
	gap: 8px;
	box-sizing: border-box;
}

.banner,
.sidebar,
.sidebar2,
.content,
.footer {
	background: #f4f8ff;
	border-radius: 12px;
	box-sizing: border-box;
}

/* top left banner */
.banner {
	grid-column: 1;
	grid-row: 1;
	overflow: hidden;
}

.banner img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: none;
}

/* first sidebar */
.sidebar {
	grid-column: 1;
	grid-row: 2;
	padding: 10px;
	align-self: start;
	overflow: visible;
}

/* Sidebar Navigation Blocks */
.navi {
	display: block;
	font-family: 'lato', Arial, sans-serif;
  color: #8e7ed6;
	font-size: 9px;
	padding: 6px 6px;
	border-radius: 10px;
	background: #e8e2ff;
	margin-bottom: 4px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 3px;
  border: 1px solid #c9bef7;
  transition: background 0.3s ease-in-out;
}

.navi:hover {
	background-color: #C4B7FB;
}

.sublinks {
	display: none;
	padding-left: 8px;
	margin-top: 0px;
  margin-bottom: 4px;
  color: #8e7ed6;
	cursor: pointer;
  font-family: 'lato', Arial, sans-serif;
	font-size: 9px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.sublinks a {
	display: block;
	padding: 3px 0;
	color: #8e7ed6;
	text-decoration: none;
  font-family: "Pixelify Sans", sans-serif;
	font-size: 11px;
  line-height: 11px;
  text-transform: None;
  font-weight: none;
}

.sublinks a:hover {
	color: #7ba6e5;
  text-decoration: none;
}


/* second sidebar under first */
.sidebar2 {
	grid-column: 1;
	grid-row: 3;
	padding: 10px;
	align-self: start;
	overflow: visible;
}

/* main content box */
.content {
  grid-column: 2 / 5;
  grid-row: 1 / 5;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* footer only under content */
.footer {
  grid-column: 2 / 5;
  grid-row: 5;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer a{
  font-family: "Pixelify Sans", sans-serif;
  font-size: 11px;
  color: #A695ED;
  padding: 5px 8px 5px 8px;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: none;
  color: #8DB9FB;
}

.footer p {
  color: #C5B7FB;
}

textarea {
  width: 100%;
  min-height: 50px;
  padding: 2px 8px;
  margin-top: 4px;
  background: linear-gradient(to bottom, #f7f4ff, #ece8ff);
  border: 1px solid #b7a3ef;
  border-radius: 14px;
  color: #5a4f97;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
  box-sizing: border-box;
  box-shadow:
    0 0 0 2px #ffffff inset,
    3px 3px 0 #ddd4ff;
  outline: none;
  resize: none;
}

textarea:focus {
  background: linear-gradient(to bottom, #fcfbff, #f2eeff);
  border-color: #a995ea;
  box-shadow:
    0 0 0 2px #ffffff inset,
    3px 3px 0 #ddd4ff,
    0 0 0 3px rgba(183, 163, 239, 0.18);
}

textarea::placeholder {
  color: #8f84c2;
  font-style: italic;
}