/* Import Google Font */
@import url(https://fonts.googleapis.com/css?family=VT323);

/* Define custom font */
@font-face {
	font-family: 'Strasua';
	src: url('/strasua.otf') format('opentype');
}
/* Reset some default browser styles */
html, body, div, h1, h2, h3, p, ul, li, a, button, input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

/* Apply a background color to the body */
body {
  background-color: #000; /* You can change this color */
  height: 100%;
}

a {
  text-decoration: none;
  color: #007bff; /* Link color */
  font-family: 'VT323', monospace;
}

/* Style headings */
h1, h2, h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

/* Style paragraphs */
p {
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Style unordered lists */
ul {
  list-style: none;
}

/* Style list items */
li {
  margin-bottom: 10px;
}

/* Style buttons */
button {
  padding: 10px 20px;
  background-color: #007bff; /* Button background color */
  color: #fff; /* Button text color */
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'VT323', monospace;
}

button:hover {
  background-color: #0056b3; /* Button background color on hover */
  color: #fff; /* Button text color on hover */
}

/* Add more styles as needed for your specific project */


#wrapper{
	margin:-30px;
}


#link-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}


#video-background {
	width: 100%;
	height: 100%;
}

/* Video container styling */
#video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	overflow-x: hidden;
	overflow-y:visible;
}

/* Video.js video player */
.video-js {
	width: 100%;
	height: 100%;
}

/* Play button styling */
#play-button {
	font-family: 'Strasua'; /* Use the custom font */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	cursor: pointer;
	font-size: 2em;
	color: white;
	outline: none;
	border-bottom: 6px inset rgba(0,0,0,.5);
	border-left: 6px inset rgba(0,0,0,.5);
	border-right: 6px inset rgba(255,255,255,.5);
	border-top: 6px inset rgba(255,255,255,.5);
	transition: border-color 0.3s;
}
#play-button:hover{
	background-color: rgba(68, 255, 0, 0.8);
}
.retro-button {
  	font-family:  'Strasua';
	background-color: rgba(255, 0, 0, 0.8);
	border: 2px solid #072d16;
	font-family: 'Strasua'; /* Use the custom font */
	color: #ffffff;
	text-shadow: 1px 1px #000000;
	transition: transform 0.2s ease-in-out;
}


/* Add retro styling to play button on hover */
.retro-button:hover {
	transform: scale(1.1);
}
/* Adjust the footer */
footer {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: #000; /* Or any background color */
  color: #fff; /* Footer text color */
  margin-top: 20px;
  font-size: .5em;
}

#new-container {
	font-family: 'VT323', monospace ;
	text-align: center;
	position: fixed;
	bottom: 80px;
	left: 0;
	right: 0;
	background: transparent;
	padding: 10px;
	z-index: 1000; /* Adjust the z-index as needed */
}
#foot-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 10px;
  background: transparent;
  z-index: 10000;

}


.new-btn {
	font-family: 'VT323', monospace ;
	background: #5a5af4;
	border-bottom: 6px inset rgba(0,0,0,.5);
	border-left: 6px inset rgba(0,0,0,.5);
	border-right: 6px inset rgba(255,255,255,.5);
	border-top: 6px inset rgba(255,255,255,.5);
	box-sizing: border-box;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 2.2rem;
	margin: 1rem;
	min-width: 200px;
	padding: .5rem;
	text-transform: uppercase;
	width: auto;
	
	&:focus,
	&:hover {
		background: #BCBCBC;
}

.new-btn:hover {
	background-color: #ffcc00;
}
#content-wrapper {
  min-height: calc(100vh - 50px); /* Adjust 50px to actual footer height */
  padding-bottom: 50px; /* Same as footer height */
}
/* Existing styles... */

/* Responsive design adjustments */
@media screen and (max-width: 768px) {
  /* Adjust font sizes for smaller screens */
  body, button, h1, h2, h3, p, a {
	font-size: 90%;
  }

  /* Make video responsive */
  #video-background {
	width: 100%;
	height: auto; /* Adjust height automatically to maintain aspect ratio */
  }

  /* Improve button sizes for easier touch */
  .new-btn, #play-button, button {
	padding: 15px 30px;
	font-size: 1.2em; /* Increase font size for readability */
  }

  /* Adjust layout for smaller screens */
  #new-container {
	display: block; /* Stack buttons vertically */
	padding: 20px 0; /* Increase padding */
	margin: -20px 0 0 0;
  }

  #foot-container {
	  display: block; /* Stack buttons vertically */
	  padding: 20px 0; /* Increase padding */
	}
	
  .new-btn {
	width: auto; /* Allow buttons to expand */
	margin: 10px auto; /* Center buttons with automatic margin */
  }
  
  /* Adjust the play button position on smaller screens */
  #play-button {
	width: auto;
	padding: 10px 20px; /* Adjust padding for a better touch target */
	font-size: 1.5em; /* Increase font size for better visibility */
  }

  /* Make sure footer content is visible and well-spaced on small screens */
  footer {
	padding: 20px 10px; /* Increase padding */
	font-size: 0.5em; /* Adjust font size for space */
  }
}

/* Ensures video container takes up full viewport height on all devices */
html, body {
  height: 100%;
}

/* Ensure buttons are easily clickable on mobile */
button, .new-btn, #play-button {
  min-width: 120px; /* Ensure a minimum width for touch targets */
  min-height: 44px; /* Minimum recommended height for touch targets */
}

/* Adjust the size and layout of navigation and content for mobile devices */
@media screen and (max-width: 480px) {
  .new-btn {
	font-size: 0.8em; /* Further reduce font size for very small screens */
	padding: 12px 24px; /* Adjust padding for smaller screens */
  }

  /* Further adjustments for smaller screens */
  #video-container, #new-container, footer, .popup {
	padding: 5px; /* Reduce padding */
	text-align: center; /* Center-align text for better readability */
  }
}
