html {
    scroll-behavior: smooth;
    font-family: Arial;
  }
  
  .title_container {
    max-width: fit-content;
    width: 100%;
    height: 35px;
    background: aliceblue;
    padding: 15px 32px;
  
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .title {
    left: 15px;
    font-size: 30px;
  }
  
  .header_container {
    position: absolute;
    gap: 20px;
    width: 40%;
    top: 8px;
    left: 830px;
    height: 35px;
    padding: 15px;
  }
  
  .header {
    width: auto;
    height: 10%;
    padding: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .header_button {
    background: rgb(38, 3, 125); 
    color:#FDDA0D;
    padding: 23px;
  }

  #search_section {
    position: absolute;
    top: 700px;
  }

  .active {
    background-color: rgb(13, 1, 43);
    color: white;
    padding: 23px;
  }
  
  .header_button:hover {
    background-color: rgb(19, 2, 62);
  }
  
  #top {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 11;
    font-size: large;
    border: none;
    outline: none;
    background-color: #FDDA0D;
    color: rgb(5, 14, 178);
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 20%;
  }
  
  #top:hover {
    background-color: #a78e00;
    color: rgb(29, 39, 231);
  }
  
  .background_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .logo_image {
    position: absolute;
    top: 90px;
    left: 25px;
    width: 42%;
    height: auto;
  }

  .whitebg {
    height: 800px;
    width: auto;
    margin-top: -230px;
    margin-left: auto;
    margin-right: auto;
    background: white;
  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .details {
    margin-top: 100px;
    border: 3px solid rgb(38, 3, 125);
    border-radius: 5px;
    padding: 50px 200px;
    background-color: #ededed;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .search_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .searchBar {
    border: 3px solid rgb(38, 3, 125);
    border-radius: 5px;
    padding: 2px 70px 2px 10px;
    background-color: #ededed;
  }

  .searchBtn {
    border: 3px solid rgb(38, 3, 125);
    border-radius: 5px;
    padding: 2px 10px;
    background-color: #ededed; 
  }

  .searchBtn:hover {
    border: 3px solid rgb(38, 3, 125);
    border-radius: 5px;
    padding: 2px 10px;
    background-color: #aeaeae; 
  }

