
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
  background-color: #121212;
    text-align: center;
    font-family: cursive; /* Added a default font */
    color: #fff;
    
  }
  a{color: yellow;}
  #active {
    color: #8555e1;
  }
  
  /* Apply styles to the bottom navigation */
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #121212;
    height: 60px;
    margin: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px -1px 5px rgba(235, 221, 221, 0.103);
    border-radius: 10px;
  position: fixed;
    max-width: 700px;
    z-index: 3; /* Added z-index to make it appear above other content */
  }
  
  /* Additional styles to improve the overall appearance */
  
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s, transform 0.3s;
  }
  .bottom-nav i{
    transition: 0.5s;
  }
  .bottom-nav i:hover{
    color: #8555e1;
  }
  /* Style the popup content */
  .popup-content {
    color: #fff;
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  /* Style the close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
  }
  
  /* Show the popup when active class is added */
  .popup.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
  }
  /* Style the icons */
  .bottom-nav a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  
  }
  
  /* Add hover effect to the icons */
  .bottom-nav a:hover {
    color: #8555e1;
  }
  
  /* Style the icons using Font Awesome */
  .bottom-nav i {
    font-size: 24px;
  }
.bottm{
  margin-top: 200px;
  
}
.bottm button{
  padding: 10px;
  border-radius: 20px;
  border:none;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.224);
  transition: 0.5s;
}
.bottm button:hover{
  box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.5);
}
