.button2 {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px; /* Adjusted padding for consistent appearance */
    font-size: 16px;
    border: 2px solid #f9ceff;
    background-color: #ff98d4; /* Background color */
    color: rgb(0, 0, 0); /* Text color */
    border-radius: 30px; /* Round shape */
    cursor: pointer;
    transition: ease background-color 0.3s; /* Smooth transition effect */
    width: 150px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: inline-block; /* Ensures proper alignment with text */
    line-height: 1; /* Ensures consistent text alignment */
    text-shadow: -1px -1px 0 rgb(255, 255, 255), 1px -1px 0 rgb(255, 255, 255), -1px 1px 0 rgb(255, 255, 255), 1px 1px 0 rgb(255, 255, 255);
  }

  #hamburger {
    font-size: 24px;
    background: #ff98d4;
    color: white;
    border: 2px solid black;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px;
    padding-right: 20px; 
    padding-left: 20px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  #menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 85px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    z-index: 10;
  }
  
  #menu.hidden {
    display: none;
  }
  
  
  #backbb {
    margin: 0;
    padding: 0px;
    display: flex;
    justify-content: left;
    padding-left: 50px;
  }