html,
body {
    height: 100% !important;

}

main {
    padding-top: 0;
}

.accueil {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 150px;
    width: 100%;
    height: 100%;
}

.titre {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 100%;
}



.line {
    background-color: #FFFFFF;
    width: 40%;
    height: 4px;
    border-radius: 1px;
    box-shadow: 5px 5px 7px black;
}

.line.top {
    transform: translateX(-40px);
    animation: linetop 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    opacity: 0;
    filter: blur(10px);
}

@keyframes linetop {
    to {
        transform: translateX(25px);
        filter: blur(0);
        opacity: 1;
    }
}

.line.bot {
    transform: translateX(40px);
    animation: linebot 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    opacity: 0;
    filter: blur(10px);
}

@keyframes linebot {
    to {
        transform: translateX(-25px);
        filter: blur(0);
        opacity: 1;
    }
}

#yanis {
    color: #FFFFFF;
    animation: yanisanime 1s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
}

@keyframes yanisanime {

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0px);

    }
}

#singer {
    color: #E0752D;
    animation-delay: 1s;
    animation: singeranime 1s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-30px);
}

@keyframes singeranime {

    to {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0);

    }
}

.presentation {
    width: 600px;
    height: auto;
    margin-left: 50px;
    color: #FFFFFF;
}

h2 {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 400;
    animation: presentation 1s cubic-bezier(0.25, 0.5, 0.5, 1) 1s forwards;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    color: #FFFFFF;
    text-shadow: 5px 5px 8px black;

}



.presentation p {
    animation: presentation 1s cubic-bezier(0.25, 0.5, 0.5, 1) 1.3s forwards;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 5px 5px 8px black;

}

@keyframes presentation {
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}




h2 span {
    color: #6b48be;
    animation: blink 1s step-end infinite;
    border-right: 3px solid #6b48be;
    padding-right: 4px;
    text-shadow: 5px 5px 8px black;

}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #6b48be;
    }
}

@media (max-width:1120px) {

    .titre {
        margin-top: 70px;
    }

    h1 {
        font-size: 70px;
        height: 80px;
    }

    .line {
        width: 60%;
    }

    .presentation {
        margin-left: 20px;
        width: 90%;
    }

    h2 {
        margin-bottom: 15px;
    }
}