.links-container {
    margin: auto;
    padding: 50px 0 50px 0;
}

#logo {
    max-width: 300px;
    display: flex;
    margin: auto;
}

h2 {
    text-align: center;
    margin-top: 0 !important;
}

.network-button {
    appearance: none;
    background-color: transparent;
    border: 0.125em solid #1A1A1A;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-flex;
    /* Changer à inline-flex pour aligner l'image et le texte */
    align-items: center;
    /* Centrer verticalement le contenu */
    font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px !important;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 0.75em 1.25em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    width: 350px;
}

.network-button:disabled {
    pointer-events: none;
}

.network-button .text-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    /* Nécessaire pour Safari et Chrome */
    background-clip: text;
    color: transparent;
    /* Rend la couleur du texte transparente pour voir le dégradé */
    font-size: 1.4em;
    font-weight: bold;
}

.network-button .text-website {
    background: linear-gradient(45deg, #0c73b9, #0041a9);
    -webkit-background-clip: text;
    /* Nécessaire pour Safari et Chrome */
    background-clip: text;
    color: transparent;
    /* Rend la couleur du texte transparente pour voir le dégradé */
    font-size: 1.4em;
    font-weight: bold;
}

.network-button .text-tiktok {
    background: linear-gradient(45deg, #69C9D0, #EE1D52, rgb(40, 40, 40));
    -webkit-background-clip: text;
    /* Pour Chrome, Safari */
    background-clip: text;
    color: transparent;
    /* Rend la couleur du texte transparente pour voir le dégradé */
    font-size: 1.4em;
    font-weight: bold;
    display: inline-block;
}

.network-button .text-youtube {
    color: red;
    font-size: 1.4em;
    font-weight: bold;
}

.network-button .text-facebook {
    color: rgb(14, 92, 195);
    font-size: 1.4em;
    font-weight: bold;
}

.network-button:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.network-button:hover span {
    color: #fff;
}

.network-button:active {
    box-shadow: none;
    transform: translateY(0);
}

.button-icon {
    width: 2.5em;
    /* Ajustez la taille de l'image selon vos besoins */
    height: 2.5em;
    /* Ajustez la taille de l'image selon vos besoins */
    margin-right: 1em;
    /* Espace entre l'image et le texte */
    vertical-align: middle;
    /* Aligner l'image avec le texte */
}

.buttons-container {
    display: block;
    max-width: 350px;
    margin: auto;
}

/* From Uiverse.io by Satwinder04 */
.input-container {
    position: relative;
    width: 350px;
}

.input-container input[type="text"] {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
    transform: scaleX(1);
}

.email-button {
    font-family: inherit;
    font-size: 20px;
    background: royalblue;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    margin: 10px auto 0 auto;
}

.email-button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.email-button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.email-button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.email-button:hover svg {
    transform: translateX(3em) rotate(45deg) scale(1.1);
}

.email-button:hover span {
    transform: translateX(7em);
}

.email-button:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}