/* Fullscreen background image */
body {
  margin: 0;
  padding: 0;
  background-image: url('your-photo.jpg'); /* Replace with your image filename */
  background-size: cover;
  background-position: center;
  height: 100vh;
  font-family: sans-serif;
}

/* Dropdown menu styling */
.dropdown {
  position: absolute;
  top: 10px;
  left: 10px;
}

.dropbtn {
  background-color: #86cdf2;
  color: white;
  padding: 10px 18px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  min-width: 130px;
  border-radius: 5px;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}
