.gradient-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 26rem 0;
    background: linear-gradient(266deg, rgba(0,171,31,1) 0%, rgba(0,120,22,1) 35%, rgba(0,63,17,1) 100%) !important;
}

.gradient-section h1 {
    margin: 0 0 10px 0;
    color: white;
    font-family: "kayak-sans";
    font-size: 75px;
}

.gradient-section h2 {
    margin: 0;
    color: white;
    font-family: "kayak-sans";
    font-size: 35px;
}


#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

#theme-icon {
    width: 24px; /* Ajustez la taille de l'icône selon vos besoins */
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.lightbulb-div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 80px;
    flex-direction: column;
}

.lightbulb-img{
    border-radius: 35px;
    border-top-left-radius: 35;
    width: 715px;
    height: 478px;
}

.discover-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 600px;
    margin-top: -150px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 35px;
    z-index: 500;
}

.discover-card h1{
    margin: 0;
    text-align: center;  
    font-size: 50px;
    font-weight: bold;
    font-family: 'Arial';
    color: rgb(56, 56, 56);
}

.discover-card h2{
    margin: 0;
    text-align: center;  
    font-size: 35px;
    font-family: 'kayak-sans';
    color: rgb(56, 56, 56);
}

.discover-card p{
    margin: 0;
    margin-top: 20px;
    text-align: center;  
    font-size: 20px;
    font-family: 'kayak-sans';
    color: rgb(56, 56, 56);
}

.custom-button {
    font-family: 'kayak-sans';
    font-size: 15px;
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 1px solid #dbdbdb;
    margin: 20px 20px 20px 20px;
    color: #363636;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius:4px;
  }
  
  #custom-button {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  #custom-button a {
    text-decoration: none;
    position: relative;
    transition: all .45s ease-Out;
    color: #4a4a4a;
  }
  
  #circle {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: #BFC0C0;
    position: absolute;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
  }
  
  #custom-button:hover #circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
    background-color: #007d3e;
  }
  
  #custom-button:hover a {
    color: lightgray;
  }


