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;
}

.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;
        }