/* style/style.css */

/* Set up the full-height flex layout */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Center main content and add spacing */
main.container {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Heading styling */
h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #222;
}

/* Video and canvas spacing */
video, canvas {
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Button spacing */
button {
    margin: 1rem auto;
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
}
