body{
	background: #2A7B9B;
	background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(19, 64, 79, 1) 1%, rgba(44, 127, 154, 1) 3%, rgba(87, 199, 133, 1) 50%, rgba(255, 233, 31, 1) 100%);
}
.grand-bloc-degrade {
    width: 80%; 
    min-height: 200px; 
    margin: 30px auto; 
  
    background: linear-gradient(to bottom right, #001670, #ca1901);

    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    padding: 20px; 
}

.pres1 {
    color: white; 
    font-family: Dancing-Script;
    text-align: center; 
    font-size: 50px;

}

.pres1 p {
    padding: 5px 0; 
    margin: 0px 0;
    line-height: 1.6;    
    width: 50;
    height: auto;
}

.imgII {
    display: block;
    position: relative;
    padding-left: 700px;
	transition: transform 0.3s ease;

}


.imgII:hover {
    transform: scale(1.05); 
}


.grand-bloc-degrade2 {
    width: 40%; 
    min-height: 125px; 
    margin: 20px auto; 
  
    background: linear-gradient(to bottom right, #001670, #ca1901);

    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    padding: 20px; 
}

.pres2 {
    color: white; 
    font-family: Dancing-Script;
    text-align: center; 
    font-size: 25px;

}

.pres2 p {
    padding: 5px 0; 
    margin: 0px 0;
    line-height: 1.6;    
    width: 25;
    height: auto;
}


.popup {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  animation: fadeIn 0.3s;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

