html, body { height: 100%; margin: 20px; }
body {
    background: var(--bg);
    color: var(--fg);
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}
h1 { margin: 2rem; }
:root {
    --bg: #fff9c4; 
    --fg: #896201; 
}

h1 {
    color: #626de1; 
    margin-top: 3rem;
    margin-bottom: 2rem;
}

video {
    max-width: 90%;
    width: 640px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

p {
    max-width: 700px;
    margin-top: 1rem;
    line-height: 1.5;
}
