body {
    background-color: #000000;
    text-align: center;
    justify-content: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif, sans-serif;
    color: #ffffff;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
   
}
h1 {
    color: #ff5132; /* Tomato color */
    font-size: 3.5em;
    margin-top: 20px;
    
}
p {
    font-size: 1.9em;
    margin-top: 20px;
}
button {
    background-color: transparent; 
    color: white;
    border: 0;
    padding: 20px 50px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px -0px 0px rgba(143,64,248, 0.5),0px 0px 0px rgba(39,200,255, 0.5);
    transition: all 0.3s;
}
button::after
{
    content: "";
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
    position: absolute;
    top: -50%;
    left: -100%;
    z-index: -1;
    transition: all 0.5s;
}
button:hover::after
{
  transform: rotate(150deg);
}
button:hover {
    transform: translate(0px, -6px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px -0px 20px rgba(143,64,248, 0.5),0px 0px 20px rgba(39,200,255, 0.5);
}
#imageZone {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 500px;
  overflow-y: auto;
}

#imageZone img {
  width: 120px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
