    @font-face {
        font-family: 'Archia';
        src: url('../fonts/archia-regular-webfont.ttf') format('truetype');
    }

    @font-face {
        font-family: 'Nighty';
        src: url('../fonts/Nighty.otf') format('truetype');
    }

    * {
        margin: 0;
        padding: 0;
        font-family: 'Archia';
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        padding-top: 60px;
        background-color: #100B00;
    }

    /* NAVBAR */

    li {
        list-style: none;
    }

    /* LINK NAV */
    a {
        text-decoration: none;
        color: #FFFFFA;
        font-size: 1.5rem;
    }

    a:hover {
        color: orangered;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 0 2rem 0 1rem;
        z-index: 1000;
        background-color: #100B00;
        border-bottom: 2px solid #FFFFFA;
    }

    nav {
        width: 100%;
        max-width: 1100px;
        height: 60px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* LOGO NAV BAR */
    .navbar_logo a {
        font-size: 2rem;
        font-weight: 600;
    }

    .navbar_links {
        position: relative;
        display: flex;
        gap: 2rem;
    }

    .burger-menu-button {
        color: #FFFFFA;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

    /* ============ BURGER MENU ============= */

    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
        height: 0;
        position: absolute;
        top: 60px;
        width: 100%;
        overflow: hidden;
        background-color: #100B00;
    }

    .burger-menu .navbar_links {
        display: flex;
        flex-direction: column;
        align-content: center;
    }

    .open {
        height: calc(100vh - 60px);
    }

    .burger-menu li {
        padding: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger-menu li a {
        font-size: 4rem;
    }

    /* RESPONSIVE */
    @media (max-width: 780px) {
        header {
            padding: 0 1rem 0 0;
        }

        .navbar_logo,
        .navbar_links,
        .burger-menu-button {
            padding: 0 20px;
        }

        .navbar_links {
            display: none;
        }

        .burger-menu-button {
            display: block;
        }

        .burger-menu {
            display: flex;
        }

        .burger-menu ul li a {
            font-size: 3rem;
        }
    }

    /* ========= ANIMATION ========== */
    .slide-in-top{-webkit-animation:slide-in-top 1s cubic-bezier(.175,.885,.32,1.275);animation:slide-in-top 1s cubic-bezier(.175,.885,.32,1.275)}

    @-webkit-keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

    .slide-out-top{-webkit-animation:slide-out-top .5s cubic-bezier(.25,.46,.45,.94) reverse both;animation:slide-out-top .5s cubic-bezier(.25,.46,.45,.94) reverse both}

    @-webkit-keyframes slide-out-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-out-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

    /* ========= BLOC 1 ========= */

    .bloc-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bloc-1 h1 {
        font-size: 10vw;
    }

    .remboy {
        display: block;
        font-family: 'Nighty';
        font-size: 18vw;
        margin-top: -3vw
    }

    /* ========= BLOC 3 ========= */

    .bloc-3 {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin-top: 60px;
    }
    .bloc-3 a {
        font-size: 3rem;
        /* margin: 40px; */
    }

    /* =============== BLOC 4 ================== */

    .bloc-4 .content {
        display: flex;
        flex-direction: row; /* Aligne les éléments verticalement */
        align-items: center; /* Centre les éléments horizontalement */
        justify-content: space-evenly; /* Aligne les éléments en haut */
        max-width: 1400px;
        gap: 20px; /* Espacement entre les éléments */
    }

    /* Style pour l'image */
    .bloc-4 {
        display: flex;
        align-items: center;
    }
    .profile-image img{
        height: 45vw;
    }

    /* Style pour le texte */
    .profile-text {
        flex: 2;
        color: #fff;
        margin: 15px 0 15px 0;
    }

    .profile-text p{
        font-size: 1.2rem;
    }
    @media (max-width: 1000px) {
        .bloc-4 .content {
            max-width: 90vw;
        }
    }

    @media (max-width: 700px) {

        .bloc-4 .content {
            flex-direction: column;
            margin: 0 20px 0 20px;
        }

        .profile-text p{
            font-size: 1rem;
        }
    }

    /* =============== ANIMATION ================== */
/* =============== ANIMATION ================== */
.link-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.span-wrapper {
    display: flex;
    justify-content: center;
}

.link-container span {
    transition: 0.4s;
    will-change: transform;
    display: inline-block;
}

.s1 span {
    transform-origin: bottom;
}

.s2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.s2 span {
    transform-origin: top;
    transform: translateY(100%) rotateX(-90deg);
    font-family: 'Remboy';
    display: inline-block;
    white-space: nowrap;
    font-size: 27px;
}

.link-container:hover .s1 span {
    transform: translateY(-100%) rotateX(-90deg);
}

.link-container:hover .s2 span {
    transform: translateY(0%) rotateX(0deg);
}

.logo-s2 span {
    font-size: 36px;
}

.media-s2 span {
    font-size: 57px;
}

.btn_mail, .btn_cv{
    margin-top: 100px;
    border: 1px solid #FFFFFA;
    border-radius: 100px;
    padding: 10px 30px;
}

.btn_cv{
    margin-top: 0px;
}

.btn_mail .s2 span, .btn_cv .s2 span{
    font-size: 45px;
}

.btn_cv .s1 span{
    font-size: 35px;
}

    /* RESPONSIVE */
    @media (max-width: 780px) {
        .nav-s2 span{
            font-size: 55px;
        }

        .logo-s2 span{
            font-size: 36px;
        }

        .btn_mail .s1 span{
            font-size: 30px;
        }
        .btn_mail .s2 span{
            font-size: 32px;
        }
    }

    footer{
        text-align: center;
        color: #FFFFFA;
        font-size: 20px;
        margin-bottom: 10px;
    }
