body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* space between buttons */
}

.centered-button-wa,
.centered-button-messenger {
    width: 200px; /* fixed width for consistency */
    height: 50px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* WhatsApp button */
.centered-button-wa {
    background-color: #25D366;
}
.centered-button-wa:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Messenger button */
.centered-button-messenger {
    background-color: #0084FF;
}
.centered-button-messenger:hover {
    background-color: #006BBE;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.centered-button-wa .icon,
.centered-button-messenger .icon {
    margin-right: 10px;
}

.centered-button-wa .text,
.centered-button-messenger .text {
    font-weight: bold;
}
