* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.4;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

.hero {
    text-align: center;
}

h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.image-frame {
    width: 400px;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 15px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }
}