.fullscreen {
	width:100%
	text-align:center
	}
/* hr Tag Formatting */
	hr{ 
    height: 1px;
	background-color: #383838;
	border: none;
	}
	
/* iframe Border Remove */
	iframe {
		border: none;
	}
	.fullscreen {
		width:100%
		text-align:center
		}
	
	/* Page Width */
		.stage {
		width:980px;
		margin-left:auto;
		margin-right:auto;
	
		}
		.top {
			width: 100%;
			height: 40px;
			border:solid 1px white
		}
		.left {
			width: 30%;
			height: 100%;
			float:left;
		}
		.main {
			float: left;
			height: 100%;
			width: 70%;
			border:  solid 1px black;
		}
	 
	/* Link Colors */
		/* unvisited link */
			a:link {
				color: #ffffff;
			}
		/* visited link */
			a:visited {
				color: #ffffff;
			}
		/* mouse over link */
			a:hover {
				color: #ffffff;
			}
		/* selected link */
			a:active {
				color: #000000;
			}
	
	/* Font Stuff */
		@font-face {
			font-family: "TW Cen MT";
			src: url(twcenmt.ttf) format("truetype");
		}
		@font-face {
			font-family: "c1";
			src: url(c1.ttf) format("truetype");
		}
	/* Font Colors */	
		p.twcenmt { 
			font-family: "TW Cen MT";
			color: #ffffff;
		}
		p.twcenmtred { 
			font-family: "TW Cen MT";
			color: #000000;
		}
		p.twcenmtlightgray { 
			font-family: "TW Cen MT";
			color: #A4A4A4;
		}
		p.twcenmtredhighlight { 
			font-family: "TW Cen MT";
			color: #FFFFFF;
			background-color: #000000;
			padding:4px;
		}
		p.twcenmtbluehighlight { 
			font-family: "TW Cen MT";
			color: #FFFFFF;
			background-color: #0600C0;
			padding:4px;
		}
		p.bold { 
			font-weight: bold;
		}
		.c1 { 
			font-family: "c1";
			color: #ffffff;
			display: inline;
		}
		p {
			display: block;
			margin-top: 0em;
			margin-bottom: 0em;
			margin-left: 0;
			margin-right: 0;
		}
	
	/* Background Image */
	body {
		background-image: url("https://i.postimg.cc/6Q88RPXM/woke-stars.jpg");
		background-color: #000000;
	}
	.footer {
		background-color: rgba(51, 51, 51, 0); /* Background color for the footer */
		color: #fff; /* Text color for the footer */
		padding: 10px; /* Optional padding for the footer */
		text-align: center; /* Center-align the content in the footer */
		position: sticky;
		bottom: 0; /* Stick the footer to the bottom */
		font-size: 16px;
	}
	.center {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}

	.image-box {
		width: 35%;
		text-align: center;
	}

	.text-box {
		width: 60%;
		text-align: left;
	}
   /* Sets the background color of the body to blue. Sets font to Rubik */

  
  /* Aligns the heading text to the center. */
   
  h1 {
	text-align: center;
  }
  
  /* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */
  
  .accordion {
    font-family: "TW Cen MT";
    color: #FFFFFF;
	width: 500px;
	margin: 0px auto;
	padding: 30px 30px;
  }
  .accordion .container {
	position: relative;
  }
  
  /* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */
  
  .accordion .label {
	position: left;
	padding: 10px 0;
	font-size: 30px;
	color: #FFFFFF;
	cursor: pointer;
  }

  /* Positions the plus sign 5px from the right. Centers it using the transform property. */

.accordion .label::before {
	content: '+';
	color: rgb(255, 255, 255);
	position: absolute;
	top: 50%;
	right: -5px;
	font-size: 30px;
	transform: translateY(-50%);
  }
  
  /* Hides the content (height: 0), decreases font size, justifies text and adds transition */
  
  .accordion .content {
	position: relative;
	height: 0;
	font-size: 20px;
	text-align: left;
	width: 500px;
	overflow: hidden;
	transition: 0.5s;
  }
  
  /* Adds a horizontal line between the contents */
  
  .accordion hr {
	width: 500px;
	margin-left: 0;
	border: 1px solid rgb(255, 255, 255);

  }

	/* Unhides the content part when active. Sets the height */

.accordion .container.active .content {
	height: 150px;
  }
  
  /* Changes from plus sign to negative sign once active */
  
  .accordion .container.active .label::before {
	content: '-';
	font-size: 30px;
  }