* {
    margin: 0;
    padding: 0;
  }
  
  /* Header Section */
  .welcome-section {
    background-color: black;
    height: 15vh;
  }
  
  header {
    display: flex;
    justify-content: space-between;
  }
  
  .logo-left {
    width: 250px;
  }
  
  .logo-right {
    margin-top: 25px;
  }
  
  /* Navigation Menu */
  .menu {
    display: flex;
    padding: 30px;
    list-style-type: none;
  }
  
  li {
    padding: 5px;
    color: white;
  }
  
  li a {
    color: white;
  }
  
  /* Banner Section */
  .banner {
    position: relative;
  }
  
  .banner img {
    width: 1300px;
    height: 700px;
    display: block;
    margin: 50px;
  }
  
  .banner h1 {
    position: absolute;
    top: 35%;
    left: 23%;
    transform: translate(-50%, -50%);
    color: rgb(63, 5, 95);
    font-size: 65px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  
  
  .title {
    text-align: center;
    font-size: 80px;
    margin-top: 20px;
    color: blueviolet;
  }
  
  .final_challenges {
    display: flex;
    gap: 45px; 
    margin-top: 50px;
     
    justify-content: center; 
    
    padding: 20px;
  }
  
  .image-container img {
    width: 750px;
    height: 610px;
    border-radius: 10px;
  }
  
  
  
 
  
  .list li{
    font-size: 20px;
    color: black;
    margin: 10px 0;
    padding: 10px;
    background-color: #f7f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    
  }
  .detail {
    list-style-type: none;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

