@font-face {
  font-family: RobotoSlab;
  src: url(fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf) format("truetype");
}

:root
{
	--vanquera-accent:#ffd711; /* Yellow | To reference, use var(--vanquera-accent) */
	--body-bg-color:#3B3735;
	--body-light:#413C3A;
	--body-dark:#312D2B;
	--quote-text:#ACABAA;
}

body
{
	background-color:black;
	background-image:url('Website Background.png');
	background-size: cover;
}

.wrapper
{
	width:80%;
	margin:auto;
	margin-top:100px;
	min-width:800px;
	max-width:1200px;
	background-color:var(--body-bg-color);
	padding-top:20px;
	padding-bottom:100px;
	padding-left:20px;
	padding-right:20px;
	border-radius:25px;
	border-style:double;
	border-width:8px 10px; /* top and bottom, sides */
	border-color:var(--body-light) var(--body-dark) var(--body-dark) var(--body-light); /* Top, right, bottom, left */
}

.center
{
	text-align:center;
}

.small-title /* For the welcome text above the main title on the home page */
{
	font-size:20px;
	text-align:center;
}

.main-title /* For the big title on the home page | currently unused */
{
	font-size:50px;
	text-align:center;
}

nav
{
	text-align:center;
	background-color:white;
	background-image:url('Header BG.png');
	background-size:300%;
	padding:5px;
	position: fixed;
	top: 0;
	width: 100%;
}

nav a
{
	color:black;
	padding:5px 40px;
}

nav a:hover
{
	/*color:var(--vanquera-accent);*/
	background-color:white;
	border-radius:5px;
	border:5px var(--body-bg-color) solid;
}

li {
  float: left;
  list-style-type: none;
  justify-content: center;
}

li a, .dropbtn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius:10px;
  z-index: 1;
}

.dropdown-content a {
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover 
{
	background-color:white;
	border-radius:5px;
	border:5px var(--body-bg-color) solid;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.home-section
{
	margin:20px;
	padding:10px;
	background-image:url('Space Vanquera.png');
	background-size: cover;
	background-color:grey;
	border-radius:25px;
	border:double white 5px;
}

h1
{
	color:black;
	text-align:left;
	/*text-decoration:underline;*/
	background-color:white;
	background-image:url('Header BG.png');
	border-radius:10px;
	border:double white 5px;
	padding:5px;
	padding-left:30px;
	letter-spacing:10px;
	font-family:RobotoSlab;
	font-weight: normal;
}

.special-quote
{
	color: var(--quote-text);
	margin:20px 200px;
	/*text-decoration:underline;*/
	background-color:var(--body-dark);
	border-radius:10px;
	border:double white 5px;
	padding:20px 80px;
	font-style:italic;
	
}

/* Top quote */
.special-quote::before {
  content: "--- ";
  color: var(--vanquera-accent);
  font-size: 2em;
}

/* Bottom quote */
.special-quote::after {
  content: " ---";
  color: var(--vanquera-accent);
  font-size: 2em;
}

/* Top quote */
.quote::before {
  content: "“";
  color: var(--vanquera-accent);
  font-size: 2em;
}

/* Bottom quote */
.quote::after {
  content: "”";
  color: var(--vanquera-accent);
  font-size: 2em;
}

p
{
	color:white;
}