.single-evenement-container {
display: flex;
flex-direction: column;
align-items: center;
    width: 100%;
}


.single-evenement {
margin: 2rem 0;
padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: fit-content;
    background-color: #EAEAEA;
    font-size: 18px;
    color: #395569;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.single-evenement > img {
    border-radius:3px ;
    height:60%;
    }

.link-evenement-single {
    height: 40px;
    width: fit-content;
   background-color: #89C1BB;
   color: #395569;
   padding: 5px;
   text-decoration: none;
   display: flex;
   align-items: center;
   font-size: 16px;
   font-weight: 600;
   border-radius: 5px;
  
   margin-top: 1rem;
   transition: 0.2s linear;
}

.link-evenement-single:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.05);
  
}


.link-stripe-single {
    height: 40px;
    width: fit-content;
   background-color: #395569;
   color: #EAEAEA;
   padding: 5px;
   text-decoration: none;
   display: flex;
   align-items: center;
   font-size: 16px;
   font-weight: 600;
   border-radius: 5px;
  
   margin: 1rem 0;
   transition: 0.2s linear;
}

.link-stripe-single:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.05);
  
}

.single-evenement-date {
    margin-bottom: 1rem;
}

.button-container {
    display: flex;
    margin: 3rem;
    gap: 3rem;
  
}

.btn-prec {
    font-size: 16px;
    color: #395569;
    text-decoration: none;
}

.btn-prec:hover {
    font-style: italic;
}

.navigation-buttons {
    display: flex;
    gap: 5rem;
}

.iframe-container {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
   
}

.iframe-hidden {
    display: none;
}


.iframe-container > iframe {
    height: 120%;
    display: block;
    margin: auto;
  
}

.iframe-button {
    background-color: #EAEAEA;
    color: #395569;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin: 16px 0 ;
    transition: 0.2s linear;
   
}
.iframe-button:hover {
    transform: scale(1.05);
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}


@media (max-width: 821px) {
    .button-container {
        display: flex;
        margin: 1rem;
        text-align: center;
    }

    .single-evenement {
        width: 70%;
    }

    
}