/* File: static/style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111827;
    background-image: url('/static/streaming-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6, p, a {
    color: white;
}

a.button-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: rgba(31, 41, 55, 0.9);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0.25rem;
}

a.button-link:hover {
    background-color: rgba(75, 85, 99, 0.9);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .min-h-screen {
        padding: 2rem;
        text-align: center;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
    }

    a.button-link {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}
