html, body {
    margin: 0;
    height: 100%;
    padding: 0;
    cursor: url(../assets/cursor2.png), pointer;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.effects {
    display: none;
}

.header {
    background: -webkit-linear-gradient(59deg, #420add, #7a4cf8);
    background:  linear-gradient(59deg, #420add, #6b39f5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre noire vers le haut */
}

.navigation {
    width: 100%;
    table-layout: fixed;
}

.table_cell {
    text-align: center;
    padding: 1rem;
}

.navibutton {
    position: relative;
    display: inline-block; /* Assurez-vous que le bouton est inline-block pour que le SVG puisse l'entourer */
    padding: 2.3rem; /* Ajoutez un padding pour que le SVG ne soit pas collé au texte */
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s;
}

.navibutton:hover,
.navibutton.is-active {
    color: rgb(162, 0, 255);
    text-decoration: none;
}

.svg-border {
    left: 0;
    pointer-events: none;
    position: absolute;
    stroke-dashoffset: 101;
    stroke-dasharray: 101 101;
    stroke-width: 4px;
    top: 0;
    transition: all .5s, stroke .3s;
}

.navibutton:hover .svg-border,
.navibutton.is-active .svg-border {
    stroke-dashoffset: 202;
}

.header .navibutton > .svg-border:first-child {
    filter: blur(4px);
    stroke-width: 5px;
}

.header .navibutton > .svg-border {
    filter: url(#displacementFilter);
    margin-left: -3px;
    margin-top: -2px;
    stroke-width:5px;
}
