﻿main {
    display: flex;
    flex-direction: column;
    
}
.global{

    background-color: rgba(45, 19, 197, 0.2); /* Réglage de l'opacité ici */
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.global .content-section strong{
    color: yellow;
}
.global h1{
   
    font-size: 52px;
    text-shadow: 9px 3px 0px rgba(163, 61, 61, 0.3);
    color: white;
    text-align: center;
}
.content-section {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px 0px 0px 0px;
    width: 80%;
    overflow: hidden;
   
    background-color: rgba(45, 19, 197, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    word-break: normal;
    animation: fadeInUp 1s ease-in-out;
}
.container-lien{
    
    margin-top: 20px;
}
.content-section h2 {
  
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}
.content-section p, ul{
    color: #fff;
    line-height: 2em;
}
.inscription-lien{
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background-color: #007bff; /* Couleur du bouton */
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Animation de transition de couleur au survol */
    width: 100%;
    text-align: center;
}
.inscription-lien:hover {
    background-color: #0056b3; /* Nouvelle couleur au survol */
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media only screen and (max-width: 768px) {
    .global{
        padding-bottom: 80px;
    }
    .global h1{
        font-size: 27px;
    }
    
    .content-section h2 {
        font-size: 18px; /* Ajustez la taille de la police selon vos besoins */
        text-align: center;
    }

    .content-section p,
    ul {
        line-height: 1.9em;
        font-size: 12px; /* Ajustez la taille de la police selon vos besoins */
    }
    .inscription-lien{
        font-size: 14px;
        padding: 10px 10px;
        width: 100%;
    }

}