body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('https://appcari.com/app/patroncari.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.container {
    background-color: rgba(0, 0, 0, 0.3); /* Adjusted for better logo visibility */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-button {
    width: 180px; /* Adjusted width for better consistency */
    height: 90px; /* Maintain aspect ratio */
    transition: transform 0.2s;
    background-color: white; /* White background for buttons */
    padding: 10px 20px; /* Add padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.app-button:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 0 20px;
    }

    .logo {
        width: 120px;
    }

    h1 {
        font-size: 1.8em;
    }

    .app-button {
        width: 150px;
    }
}
