body {
    font-family: 'Montserrat', sans-serif; /* Cambiamos la fuente */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Fondo degradado */
    color: #333; /* Color de texto base */
}

.container {
    background-color: rgba(255, 255, 255, 0.95); /* Fondo blanco translúcido */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #6a11cb; /* Color del título */
    margin-bottom: 25px;
    font-size: 2.5em; /* Tamaño del título */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.drop-area {
    border: 3px dashed #bbb;
    padding: 40px;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.drop-area.dragover {
    background-color: #e0f7fa;
    border-color: #26c6da;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.options label {
    font-weight: bold;
    margin-right: 10px;
}

.options select,
.options button {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    background-color: #6a11cb;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.options select {
    background-color: #f0f0f0;
    color: #333;
}

.options button:hover {
    background-color: #551aac;
}

#preview img {
    max-width: 100%; /* La imagen no superará el ancho del contenedor padre */
    max-height: 250px; /* Establece una altura máxima para la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    object-fit: contain; /* Asegura que la imagen se ajuste dentro del contenedor */
}

/* Estilos responsivos */
@media (max-width: 480px) {
    .options {
        flex-direction: column;
        align-items: stretch;
    }

    .options label,
    .options select,
    .options button {
        margin-bottom: 15px;
    }
}


.drop-area label{
    background-color: #6a11cb;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
}
.drop-area label:hover{
    background-color: #551aac;
}

.share-buttons {
            margin-top: 20px;
            text-align: center;
        }

        .share-buttons a {
            display: inline-block;
            margin: 0 10px;
        }

        .share-buttons img {
            width: 40px; /* Ajusta el tamaño según sea necesario */
            height: 40px;
            border-radius: 50%;
        }
        
        
         .buttons-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .buttons-container a,
        .buttons-container button {
            text-decoration: none;
            background-color: #007bff;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .buttons-container a:hover,
        .buttons-container button:hover {
            background-color: #0056b3;
        }
