.welcome-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.welcome-title {
    text-align: left;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.pub-name {
    text-align: left;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'League Gothic', sans-serif;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.cta-button {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent; /* Ajoute une bordure transparente par défaut */
}
.cta-container {
    display: flex;
    justify-content: flex-start; /* Aligne le conteneur du bouton à gauche */
    margin-top: 20px;
}
.cta-button:hover {
    background-color: transparent;
    color: black;
    border-color: rgb(0, 0, 0); /* Change la couleur de la bordure au survol */

}
