/* user styles */

:root {
	--header-image: url('https://nighthawkstar.neocities.org/assets/azura/banner.png');
	--body-bg-image: url('https://nighthawkstar.neocities.org/assets/azura/background.jpg');
}

/* font */

.gelasio-<uniquifier> {
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

body {
	font-family: 'Gelasio', serif;
	margin: 20px;
	background: linear-gradient(rgba(147, 210, 251,.8), rgba(147, 210, 251,.8)), var(--body-bg-image);
	background-repeat: repeat;
	color: #62BDF9;
}

* {
	box-sizing: border-box;
}

/*alignment*/

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*container*/

#container {
	max-width: 900px;
	margin: 0 auto;
	;
}

/*special text colors*/

#container a {
	color: #93D2FB;
	font-weight: bold;
}

#container a:hover {
	color: #FEFAE6;
	transition: 0.3s;
}

strong {
	color: #35AAF8;
}

#header {
	width: 100%;
	border: 3px solid #FCE782;
	border-radius: 4px;
	margin: auto;
	padding: 10px;
	height: 225px;
	background-image: var(--header-image);
	background-size: 100%;
	background-repeat: no-repeat;
}

#flex {
	display: flex;
}

/*style switcher*/

input[type=option], select {
	width: 100%;
	padding: 5px;
	margin: 2px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}


/*sidebar*/

aside {
	background-color: #ffffff;
	width: 200px;
	padding: 20px;
	border: 2px solid #FCE782;
	border-radius: 4px;
	font-size: smaller;
}

/*main*/

main {
	background-color: #ffffff;
	flex: 1;
	padding: 20px;
	border: 2px solid #FCE782;
	border-radius: 4px;
	order: 2;
}

*/ #leftSidebar {
	order: 1;
}
            
 /*navigation*/
            
.nav {
	background-color: #0750c0;
	border: 1px solid white;
	border-radius: 4px;
	padding: 10px;
	text-align: center;
}

ulnav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: auto;
	background-color: transparent;
	text-align: center;
}

ulnav li a {
	display: block;
	color: #0750c0;
	padding: 8px 16px;
	text-decoration: none;
	transition: 0.3s;
}

ulnav li a:hover {
	background-color: #FCE782;
}

/*lists*/

ol {
	list-style-image: url('https://nighthawkstar.neocities.org/assets/azura/bullet.png');
}

/*border*/

hr {
	display: block;
	border: 0px;
	height: 50px;
	width: 300px;
	margin: auto;
	background-image: url('https://nighthawkstar.neocities.org/assets/azura/header.png');
	background-repeat: no-repeat;
}

/*footer*/

footer {
	background-color: #ffffff;
	width: 100%;
	height: 40px;
	padding: 10px;
	text-align: center;
	border: 2px solid #FCE782;
	border-radius: 4px;
	;
}

/*headers*/

h1 {
	font-size: 23px;
}

h2 {
	background-color: #FDF2B9;
	border: 1px solid #FCE782;
	border-radius: 6px;
	padding: 10px;
	margin: auto;
	text-align: center;
	font-size: 18px;
}

h3 {
	background: linear-gradient(rgba(230, 245, 254,.2), rgba(230, 245, 254,.2)), url('https://nighthawkstar.neocities.org/assets/azura/h3.jpg');
	border: 1px dotted #FCE782;
	border-radius: 6px;
	padding: 10px;
	text-align: center;
}

div.a {
	text-align: center;
}

/*box*/

.box {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	border: 1px dotted white;
	padding: 10px;
}
            
/*overflow*/

div.ex2 {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	background-color: #0d4c63;
	background-repeat: repeat;
	border: 1px dotted #FCE782;
	border-radius: 6px;
	padding: 10px;
	height: auto;
}

div.ex3 {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	background-color: #0d4c63;
	background-repeat: repeat;
	border: 1px dotted #FCE782;
	border-radius: 6px;
	padding: 10px;
	height: 100px;
	overflow: auto;
}

div.ex4 {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	background-color: #0d4c63;
	background-repeat: repeat;
	border: 1px dotted #FCE782;
	border-radius: 6px;
	padding: 10px;
	height: 500px;
	overflow: auto;
}
            
/*status cafe*/
            
#statuscafe {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	background-color: #0d4c63;
	background-repeat: repeat;
	border: 1px dotted #FCE782;
	border-radius: 6px;
	padding: 10px;
}

#statuscafe-username {
	margin-bottom: .5em;
}

#statuscafe-content {
	margin: 0 1em 0.5em 1em;
}

/*art gallery*/

div.gallery {
	transition: 0.3s;
	width: 150px;
	opacity: 0.8;
}

div.gallery:hover {
	background-color: #FCE782;
	width: 150px;
	opacity: 1;
}

div.gallery img {
	width: 150px;
	height: 150px;
	object-fit: cover;
}

div.desc {
	padding: 10px;
	text-align: center;
}

* {
	box-sizing: border-box;
}

.responsive {
	padding: 0 6px;
	float: left;
	width: 24.99999%;
}

@media only screen and (max-width: 700px) {
	.responsive {
		width: 49.99999%;
		margin: 6px 0;
	}
}

@media only screen and (max-width: 500px) {
	.responsive {
		width: 100%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.collapsible {
	font-family: 'Gelasio', serif;
	font-weight: bold;
	background: linear-gradient(rgba(230, 245, 254,.2), rgba(230, 245, 254,.2)), url('https://nighthawkstar.neocities.org/assets/azura/h3.jpg');
	border: 1px dotted #FCE782;
	border-radius: 6px;
	opacity: 0.8;
	color: #93D2FB;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	outline: none;
	transition: 0.3s;
}

.active, .collapsible:hover {
	background: linear-gradient(rgba(230, 245, 254,.2), rgba(230, 245, 254,.2)), url('https://nighthawkstar.neocities.org/assets/azura/h3.jpg');
	border: 1px dotted #FCE782;
	border-radius: 6px;
	opacity: 1;
}

.content {
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.fadein img {
	opacity: 0.5;
	transition: 1s ease;
}

.fadein img:hover {
	opacity: 1;
	transition: 1s ease;
}

/*tab stuff*/

/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px dotted #FCE782;
	background-color: inherit;
	border-radius: 6px;
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	color: #93D2FB;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-family: 'Gelasio', serif;
	font-weight: bold;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #FCE782;
	color: #FEFAE6;
	font-weight: bold;
	transition: 0.3s;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px dotted #FCE782;
	border-top: none;
	border-radius: 6px;
	background: linear-gradient(rgba(230, 245, 254,.9), rgba(230, 245, 254,.9)), var(--body-bg-image);
}
  
/*table*/

table, th, td {
	border: 1px solid #FCE782;
	border-collapse: collapse;
	padding: 8px;
}

tr:nth-child(odd) {
	background-color: #077CCA;
}

tr:nth-child(even) {
	background-color: #BAE2FD;
}

/* BELOW THIS POINT IS MEDIA QUERY */

@media only screen and (max-width: 800px) {
	#flex {
		flex-wrap: wrap;
	}

	aside {
		width: 100%;
	}

	main {
		order: 1;
	}

	#leftSidebar {
		order: 2;
	}

	#rightSidebar {
		order: 3;
	}

	#navbar ul {
		flex-wrap: wrap;
	}
}