body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

.hero {
    width: 100%;
    background-color: #000;
    text-align: center;
}

.hero img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh; /* keeps full image visible */
}

.content {
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;        /* space between buttons */
    margin: 2rem auto;  /* centers the whole block */
}

.links a {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #444;
    border-radius: 4px;
    text-decoration: none;
    color: #444;        /* white text on black page */
    background-color: #000; /* optional, keeps the cinematic look */
    text-align: center; /* centers text inside each button */
    font-size: 1.1rem;
}


footer {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
}
