header{
    background: linear-gradient(90deg, #15012f, #a020f0);
    font-family: 'Exo 2', sans-serif;
    color: white;
    border-radius: 16px;
    padding: 3px 0;
	  box-shadow: 0 0 100px rgba(160,32,240,0.5);
}

body{
    background-color: rgba(34, 34, 34);
    font-family: 'Orbitron', sans-serif;
    color: white;
    text-align: center;
    
}

@keyframes slidein {
  from {
    margin-left: 15%;
    width: 100%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

h1.titre {
	animation-duration: 1.5s;
    animation-name: fadeIn;
}

h2.donsh2{
  text-align: center;
  
}
h3{
    font-size: 23px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3.copyright{
  font-size: 12px;
  color: rgb(97, 97, 97);
  box-sizing: border-box;
}
button {
  display: inline-block;
  background-color: rgb(110, 3, 142);
  border-radius: 100px;
  border: 2px double rgb(84, 3, 109);
  box-shadow: 0px 0px 100px rgb(60, 2, 78);
  color: #eeeeee;
  text-align: center;
  font-family: 'Exo 2';
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
  margin: 5px;
  box-shadow: 0px 0px 50px black;
}


#popup {
  display: none; 
  position: fixed;
  top: 0;                     
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5); 
  z-index: 2;
  display: flex;
}


.popup-content {
  background: #2c0038; 
  padding: 25px;
  border-radius: 15px;
  color: white;
  width: 80%;
  max-width: 350px;
  text-align: center;
  border: 2px solid rgb(110, 3, 142);
  box-shadow: 0px 0px 15px rgba(110, 3, 142, 0.8);
  animation: fadeIn 1s ease;
}


@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.left-image {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-height: 80%;
    z-index: 1;
    filter: drop-shadow(0px 0px 50px red);
}

.right-image {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-height: 80%;
    z-index: 1;
    filter: drop-shadow(0px 0px 50px yellow);
}

input
{
background-color : rgb(110, 3, 142);
color : white;
border-radius: 8px;
font-family : 'Exo 2'; 
border : 3px solid rgb(84, 3, 109);
box-shadow: 0px 0px 100px rgb(60, 2, 78);
font-size: 14px;
  padding: 20px;
}

::placeholder{
  color: white;

}

#donation{
  position: fixed;
    right: 25px;
    bottom: 10px;
  background-color: rgba(49, 49, 49);
    font-family: 'Exo 2', sans-serif;
    color: white;
    border-radius: 16px;
    border : 3px solid rgba(49, 49, 49);
	box-shadow: 0px 0px 100px rgb(60, 2, 78);
  height: 200px;
  width: 350px;
  z-index: 1;
  animation: fadeIn 2s ease;
}

.fermer-dons{
  background-color: rgb(110, 3, 142);
  border-radius: 100px;
  border: 2px double rgb(84, 3, 109);
  color: #eeeeee;
  text-align: center;
  font-size: 15px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0px 0px 50px black;
  margin-top: 10px;
  
}

button:hover{
  transform: scale(1.08);
  transition: 0.2s ease;
}

.fermer-dons:hover {
    transform: scale(1.08);
  transition: 0.2s ease;
}
  

.dons:hover {
  transform: scale(1.08);
  transition: 0.2s ease;
}

.dons{
  background-color: rgb(110, 3, 142);
  border-radius: 100px;
  border: 2px double rgb(84, 3, 109);
  color: #eeeeee;
  text-align: center;
  font-size: 15px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0px 0px 50px black;
  margin-top: 10px;

}

@media (max-width: 600px) {
	.left-image,
	.right-image { 
	display: none;
	}

	input
{
	font-size: 20px;
	padding: 45px;
	height: 15px;
	box-sizing: border-box;
	margin-bottom: 10px;
}


}



















