* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #f2f2f2;
  font-weight: bold;
}

/* Top navigation bar styles */
.top-navbar {
  background-color:transparent; /* Dark background color */
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px; /* Adjusted padding */
}

.top-navbar h1 {
  color: white;
  margin-right: auto; /* Push "O2" to the left */
}

.top-navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.top-navbar li {
  display: inline-block; /* Display items horizontally */
}

.top-navbar li a {
  display: block;
  color: white; /* Text color */
  padding: 12px 14px; /* Adjusted padding */
  text-decoration: none;
}

.top-navbar li a:hover {
  background-color:whitesmoke; /* Background color on hover */
  color: black; /* Text color on hover */
  
}

.container {
  display: flex;
  height: 89vh; /* Reduced height */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  width: 15%;
  border: 1px solid linear-gradient(to right, #ff0000, #00ff00, #0000ff);
  margin: 10px;
  overflow: hidden;
  border-radius: 20px;
  background:transparent; /* Dark blue */
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  float: right; /* Float the navbar to the right */
}

.navbar a {
  margin: 8px 0;
  color: #fff; /* White */
  font-size: 16px; /* Reduced font size */
  text-align: center;
  text-decoration: none; /* Remove underline from links */
  cursor: pointer; /* Add cursor pointer for clickable feel */
  display: block; /* Make links behave like block elements */
  padding: 8px 16px; /* Adjusted padding */
  border-radius: 5px; /* Add rounded corners */
}

.navbar a:hover {
  background-color: whitesmoke;
  color: black; /* Darker blue on hover */
}

.content {
  flex: 1; /* Fill remaining space */
  border: 1px solid black;
  margin: 10px;
  border-radius: 20px;
  background: #fff;
  padding: 12px; /* Adjusted padding */
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
span{
  font-size:large;
}
.logo{
  padding: 12px;
  text-decoration-line: none;
  transition: transform .2s;
}
.logo:hover{
  transform: scale(1.2);
}

#custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  background-image: url('../images/navigation.png');
  background-size: contain;
  pointer-events: none; /* To prevent the cursor from interfering with elements */
  z-index: 9999; /* Make sure it's on top of other elements */
}



