
/* General styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Hide overflow to prevent scrolling */
  position: relative; /* Ensure relative positioning */
}

/* Background image */
.background-image {
  position: fixed; /* Fixed position for the background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it's behind other content */
  background-image: url('../images/p.jpg');
  background-size: cover;
}

/* Container styles */
.container {
  position: relative;
  z-index: 1; /* Ensure it's above the background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Set height to viewport height */
  padding: 50px; /* Add padding to the container */
  box-sizing: border-box; /* Include padding in height calculation */
}

/* Content styles */
.content {
  padding: 30px;
  border-radius: 5px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
  max-width: 600px; /* Limit maximum width for content */
  width: 100%;
}

/* Navigation bar styles */
.nav {
  position: fixed; /* Fixed position at the top */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px; /* Add some space around the navigation bar */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  z-index: 1000; /* Ensure it's above other content */
}

.nav .logo {
  display: inline-block;
  margin-right: 20px;
  border: 1px solid #fff; /* White border */
  border-radius: 50%;
  padding: 5px;
  width: 40px;
  height: 40px;
}

.nav .logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.nav a {
  text-decoration: none;
  color: #fff; /* White text */
  font-weight: bold;
  margin: 0 10px; /* Add some space between the navigation links */
  padding: 0 10px; /* Add 10px padding to the left and right sides of the link text */
}

.nav a:hover {
  color: #007bff; /* Hover color */
}

/* Header styles */
p {
  color: #fff; /* White text */
  font-weight: bold;
  text-align: center; /* Center the text */
}

p  {
  background-color: rgba(0, 0, 0, 0.473); /* Adjust the opacity and color of the h1 text */
  padding: 70px; /* Add some padding to the h1 text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    padding: 20px; /* Reduce padding on smaller screens */
  }

  p {
    padding: 30px; /* Adjust header padding on smaller screens */
  }

  p span {
    padding: 40px; /* Adjust span padding on smaller screens */
  }
}
