
/* Configuración básica */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: black;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh; /* La imagen ocupa toda la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre la pantalla manteniendo la proporción */
}

.button-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.download-btn {
    background-color: #007BFF;
    color: white;
    padding: 20px 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #0056b3;
}

/* Back button container */
.back-button-container {
    position: absolute;
    top: 30px;
    left: 30px;
}

.back-btn {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Sombra suave */
    text-transform: uppercase; /* Hace que el texto esté en mayúsculas */
}

.back-btn i {
    font-size: 18px; /* Tamaño de la flecha */
}

.back-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px); /* Levanta el botón al hacer hover */
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.7); /* Sombra más fuerte en hover */
}
