/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* Background Image for Pages 2, 3, and 4 */
body.background-image {
  background: url('images/data-center.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Test Site Banner Styles */
.test-banner {
  background-color: #ffcc00; /* Yellow background */
  color: #000; /* Black text */
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure the banner stays on top */
}

.test-banner p {
  margin: 0;
}

/* Video Background Styles (Homepage Only) */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the video behind other content */
  overflow: hidden;
}

.video-background iframe {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire background */
}

/* Header Styles */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  text-align: center;
  position: relative; /* Ensure the logo is positioned relative to the header */
}

/* Logo Styles */
header img {
  height: 144px; /* 1.5 inches tall (1.5 * 96px = 144px) */
  position: absolute; /* Position the logo absolutely within the header */
  top: 10px; /* Distance from the top */
  left: 10px; /* Distance from the left */
}

header h1 {
  margin-left: 160px; /* Add margin to prevent text overlap with the logo */
  display: inline-block;
  vertical-align: middle;
  margin-top: 20px; /* Adjust as needed */
}

/* Navigation Styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #00aaff; /* Change color on hover */
}

/* Main Content Styles */
main {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  margin: 20px;
  border-radius: 10px;
}

main h2 {
  color: #00aaff; /* Accent color for headings */
}

main p {
  line-height: 1.6;
}

main ul {
  list-style-type: square;
  padding-left: 20px;
}

main ul li {
  margin-bottom: 10px;
}

/* Footer Styles */
footer {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}