body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  .container {
    position: relative;
    height: 87vh;
  }
  
  .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 255, 0.8);
    padding: 30px;
    border-radius: 5%;
  }
  
  .content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #050a30;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: white; /* Change color on hover */
    color: blue;
  }
  

  @media screen and (max-width: 600px) {
    .content h1 {
      font-size: 2rem; /* Reduce font size for smaller screens */
    }
    .content {
      width: 70%; /* Adjust width for mobile view */
      left: 50;
  }
  }

/* Navbar */
nav {
    background-color: #1D24CA;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    font-size: 1.5em;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 1.2em;
}

.nav-links li a:hover {
  background-color: #F9E8C9;
  color: #201658;
}

.button-link {
  display: inline-block;
  padding: 10px 20px; /* Adjust padding as needed */
  background-color: #98ABEE; /* Color for the button */
  color: #201658 !important; /* Text color */
  text-decoration: none; /* Remove underline from the link */
  border-radius: 5px; /* Rounded corners for the button */
  border: none; /* Remove border */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.button-link:hover {
  background-color: #1a1243; /* Darker color on hover */
}