body {
    background: linear-gradient(to right, #ffcc00, #ff6699);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: space-around;
}

.button {
    display: inline-block;
    padding: 20px 40px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #333;
    font-size: 1.5em;
    transition: all 0.3s ease;
    flex: 1;
}

.productora:hover {
    background-color: orange;
    color: black;
}

.toner-service {
    background-color: #333;
}

.toner-service:hover {
    background-color: #00ccff;
    color: black;
}
