@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #5d0c97, #2e003e);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#uploadarea {
    width: 300px;
    height: 200px;
    border: 2px dashed white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    transition: background ease-in-out 0.3s;
}

#uploadarea:hover {
    background: rgba(255, 255, 255, 0.2);
}

#uploadarea p {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
    opacity: 0.8;
}
