
body {
    /* Eliminar el degradado existente y agregar tu imagen de fondo */
    background-image: url('f1.png'); /* Cambia esto por la ruta real de tu imagen */
    background-size: cover; /* Esto hará que la imagen de fondo cubra todo el espacio disponible */
    background-position: center; /* Esto centrará la imagen en la página */
    background-repeat: no-repeat; /* Esto evitará que la imagen se repita */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 1800px;
    height: 800px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px; /* Increased padding */
    background-color: #e6f7ff;
    border-bottom: 5px solid #b3e0ff;
    box-sizing: border-box;
}

#logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo {
    height: 140px; /* Increased height */
}

h1 {
    color: #0056b3;
    margin: 0;
}

#return-button {
    background-color: #0056b3;
    color: white;
    padding: 15px 19px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: background-color 0.3s;
    margin-right: 20px; /* Added margin to move away from the edge */
}

#return-button:hover {
    background-color: #003d82;
}

main {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.receipt-option {
    text-align: center;
}

.icon {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.receipt-link {
    text-decoration: none;
    color: #0056b3;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.receipt-link:hover {
    color: #003d82;
}

.receipt-link span {
    display: block;
    margin-top: 15px;
    font-size: 18px; /* Adjusted font size for two lines */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2; /* Ensure lines are nicely spaced */
    word-wrap: break-word; /* Break the text into multiple lines if needed */
    width: 300px; /* Set width to match icon width */
}
