* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-size: "Arial";
}

header {
    width: 100%;
    height: 70px;
    background-color: #ff9c33 /*#3a3a3a*/;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: row;
}

header > a, header button {
    color: #fff;
    margin: 0 15px;
    font-size: 1.3em;
}

header button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

header .dropdown-1   {
    position: relative;
    height: 100%;
    display: flex;
}

header .dropdown-1 .content  {
    display: none;
}

header .dropdown-1:hover .content  {
    display: block;
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: #ffebd5/*rgb(245, 245, 245)*/;
    top: 70px;
    width: 140%;
    padding: 12px 15px;
    box-sizing: border-box;
}

header .content a {
    color: black;
    padding-top: 5px;
} 

header .icon {
    display: none;
}

@media (max-width: 1000px) { /*A comparer avec d'autres écran*/
    header > a, header button {
        display: none;
    }

    header .icon {
        display: block;
        position: absolute;
        right: 0;
        text-align: center;
        width: 5% !important;
        top: 50%;
        top: 20px;
        padding: 0 !important;
    }

    header.responsive > a,
    {
        padding: 10px 0;
    }

    header.responsive > a,
    header.responsive .dropdown-1 {
        display: block;
        width: 100%;
    }

    header.responsive button {
        display: block;
        padding: 10px 0;
    }

    header {
        flex-direction: column;
        height: 100%;
        min-height: 120px;
        align-items: flex-start;
    }

    header .dropdown-1:hover .content  {
          position: relative;
          width: 100%;
          top: 0;
          padding-left: 20px;
    }
}

h1 {
    margin: 50px;
    padding: 5px;
    text-align: center;
    border: 2px solid black;
    border-radius: 15px 50px;
    box-shadow: 10px 5px 5px #ffc280;
}

.video-container {
    padding: 2rem;
}

.video-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.25);
}

.tp-description {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.tp-content {
    max-width: 800px;
    background-color: #fffbe6;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.tp-content h2, .tp-content h3 {
    color: #ff9900;
    margin-bottom: 1rem;
}

.tp-content ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.tp-content li {
    margin-bottom: 0.5rem;
}

.tp-download {
    text-align: center;
    margin-top: 2rem;
}

.download-button {
    background-color: #ff9900;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.download-button:hover {
    background-color: #e67e00;
}
