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

body {
    font-family: 'Courier New', Courier, monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: right;
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.bottom-nav {
    background: #1a1a1a;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bottom-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

.bottom-nav a:hover {
    background: #333;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
    }

    .content {
        text-align: center;
        padding: 1.5rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .bottom-nav {
        gap: 1rem;
        padding: 0.75rem;
    }

    .bottom-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
