*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body{
    background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(img.jpg);
    background-position: center;
    background-size: cover;
    height: 100em;
    background-repeat: no-repeat;
}

.logo{
    font-size: 25px;
    color: rgb(143, 127, 127);
    text-decoration: none;
    font-weight: 600;
    animation: slideRight 1s ease forwards;
}

.logo span{
    color: black;
    font-weight: bold;
    font-size: 2rem;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

@keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
}

.titre{
    margin-top: 100px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 50px 8% 0;
}

.content{
    max-width: 100%;
}

.content h1 {
    font-size: 35px;
    line-height: 1.2;
    animation: slideBottom 1s ease forwards;
    color: rgb(173, 172, 172);
}

.content p{
    font-size: 35px;
    line-height: 1.2;
    margin: 15px 0 30px;
    animation: slideLeft 1s ease forwards;
    color: rgb(173, 172, 172);
}

@keyframes slideBottom {
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }


    100%{
    transform: translateY(0);
    opacity: 1;
    }
}

@keyframes slideLeft {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }


    100%{
    transform: translateX(0);
    opacity: 1;
    }
}