#accueil {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 8vw;
    gap: 3em;
    text-align: left;
    box-sizing: border-box;
}

#accueil .accueil-texte {
    flex: 1 1 0;
    min-width: 250px;
}

#accueil h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

#accueil p {
    font-size: 1.5em;
    color: #ffffff;
}

#accueil #accroche {
    font-size: 1.2em;
    color: #aaaaaa;
    margin-top: 10px;
}

#accueil img {
    flex: 0 0 320px;
    max-width: 35vw;
    width: 620px;
    height: auto;
    border-radius: 10em;
    margin: 0;
    display: block;
}

.arrow {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(0deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 1.5vw;
    height: 1.5vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}
