body {
    margin: 0px;
    background-color: black;
    color: white;
}


/* ***********************************************   Nav  ************************************************** */
span.material-symbols-outlined {
    color: #D44740;
    width: 24px;
    height: 24px;
}

.dropdown {
    position: relative;
    display: flex;
    transition: 2s ease-in-out;
}

.dropdown:hover {
    cursor: default;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    z-index: 1;
    transition: 1s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    text-decoration: none;

    display: block;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.dropdown-content a:hover {
    color: #D44740;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

a.btn.btn-light {
    background-color: #ff595056;
    border: none;
    width: 210px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 0px;
    transition: 0.2s ease-in-out;
    font-family: "source-sans-pro", sans-serif;
}

a.btn.btn-light:hover {
    background-color: #ff59507a;
    color: white;
}

.liens-nav {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.home {
    display: flex;
    justify-content: space-around;
}


.liens-nav a {
    color: rgb(255, 255, 255);
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    padding: 0px 40px 1px 3px;
}

p.programmation {
    color: rgb(255, 255, 255);
    font-family: "source-sans-pro", sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    display: inline;
    padding: 0px 40px 0px 3px;
    transition: 0.2s ease-in-out;
}

p.programmation:hover {
    color: #D44740;
}

.dropdown-content a {
    padding: none;
}

.span-home {
    position: relative;
}

span.home {
    position: absolute;
    bottom: 5px;
    right: -3px;
}

.contact {
    display: flex;
    justify-content: space-around;
}

a.lien {
    transition: 0.2s ease-in-out;
}

a.lien:hover {
    color: #D44740;
}

/* *********************************************** header   ************************************************** */

.img {
    position: relative;
    background-image: url(../img/image-from-rawpixel-id-5924378-jpeg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 341px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.682);
    z-index: 1;
}

.h1 {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-bottom: 0px;
}

.h1 img {
    transform: rotate(-25deg);
    animation: shake 2s infinite alternate;
}

.h1 img:last-child {
    transform: rotate(25deg);
    animation: shake 2s infinite alternate;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2px, );
    }

    20% {
        transform: translate(2px, );
    }

    30% {
        transform: translate(-2px, );
    }

    40% {
        transform: translate(2px, );
    }

    50% {
        transform: translate(-2px, );
    }

    60% {
        transform: translate(2px, );
    }

    70% {
        transform: translate(-2px, );
    }

    80% {
        transform: translate(2px, );
    }

    90% {
        transform: translate(-2px, );
    }

    100% {
        transform: translate(0, );
    }
}

h1 {
    color: white;
    font-family: "devils-haircut", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 99px;
}