



#home {
    display: flex;
    height: 75vh;
    display: flex;
    padding: 0px;
    background: 
        var(--url);
    background-size: cover;
    background-position: center;
    position: relative;
    align-items: center;
}
#home #home-title {
    flex: 1;
    margin: 0;
}

#home #home-title .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 0px;
}

#home #home-title h1 {
    margin-top: 120px;
    font-size: 8vh;
    font-weight: bold;
    margin-bottom: 00px;
}

#home #home-title p {
    margin: 0;
    font-size: 3vh;
    margin-bottom: 10px;
}

#home #home-title button {
    width: 150px;
    border: none;
    border-radius: 20px;
    background-color: var(--border-color-focus);
    padding: 10px;
    margin-bottom: 30px;
    cursor: pointer;
}

#home #home-title button:hover {
    cursor: pointer;
}




#home #presentation {
    bottom: 2rem;  /* distance du bas */
    right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 6px solid var(--border-color-focus);
    background-color: var(--bg-color);
    border-radius: 30px;
    width: 40%;
    display: none;
    text-align: justify;
    padding: 2rem;
    position: absolute;
}

@media screen and (max-width: 1200px) {
    #home{
        flex-direction: column;
        height: auto;
    }
    #home #home-title {
        margin: 0;
    
    background-size: cover;
    background-position: center;

}
    #home #home-title h1{
        font-size: 6vh;
    }
    #home #presentation {
        order: 2;
    border-left: 0;
    background-color: var(--bg-color-two);
    border-radius: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    width: auto;
    position: relative;
}
}

@media screen and (max-width: 700px) {
    #home{
        flex-direction: column;
        height: auto;
    }
}