* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero-image {
    width: 300px;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 3rem;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.links a:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    .links {
        flex-direction: column;
        gap: 1rem;
    }

    .links a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
