body {
background-image: url('image/background1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f1f1f1;
}
header {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

     .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      padding: 12px 16px;
      z-index: 1;
    }

    .dropdown-content p {
      margin: 0;
    }

.logo {
  display: flex;
  align-items: center;
}


.navigation {
  display: flex;
  align-items: center;
}

.navigation a {
  margin-left: 20px;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff; /* Example color for navigation links */
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.heading {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}

.subheading {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.button-container {
  display: flex;
  gap: 10px;
}

.button {
  padding: 10px 24px;
  width: 200px;
  background-color: white;
color: black;
border: 2px solid #3530b1;
  transition-duration: 0.4s;
  border-radius: 20px;
}
.button:hover {
  background-color: #3530b1; /* Green */
  color: #ffffff;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Adjust the height if needed */
}
.card {
width: 500px; /* Adjust the desired width */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.8); /* Adjust the desired opacity */
  padding: 20px;
        }

/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
  .navigation {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation a {
    margin-left: 0;
    margin-top: 10px;
  }

  .content {
    height: auto;
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .container {
    height: auto;
  }

  .card {
    width: 100%;
  }
}