* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.containerr {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
	  margin: 0 auto;
}

h1 {
    margin-bottom: 1.5rem;
    color: #333;
}

.upload-section {
    margin-bottom: 1.5rem;
}

input[type="file"] {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px solid #025bee;
    border-radius: 5px;
}

button {
    background-color: #025bee;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.preview-section {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.preview-section img {
    margin: 0.5rem;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.download-section {
    margin-top: 1.5rem;
}

.download-section a {
    text-decoration: none;
    background-color: #025bee;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.download-section a:hover {
    background-color: #0056b3;
}