body {
    background-color: #DCDCDC; /* Fondo negro */
    color: #f7931a; /* Color de texto Bitcoin naranja */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #1e1e1e; /* Fondo un poco más claro para el contenedor */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.logo img {
    width: 100px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espacio entre los botones */
    margin-bottom: 30px;
}

.btn {
    text-decoration: none;
    color: #fff;
    background-color: #f7931a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e58a1a;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border: 3px solid #f7931a;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #a0a0a0;
}