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

html, body {
    height: 100%;
    background-color: #fff;
    color: #666;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.15em;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.3em;
    color: #888;
    margin-bottom: 50px;
    text-transform: lowercase;
}

.main-image {
    max-width: 600px;
    width: 100%;
    margin-bottom: 50px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    text-align: center;
    margin-bottom: 50px;
    color: #777;
}

.tagline p {
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 80px;
}

nav a {
    color: #777;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #666;
}

.back-link {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.back-link:hover {
    color: #666;
}

.glitch-text {
    max-width: 700px;
    text-align: left;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.12em;
    white-space: pre-wrap;
    font-size: 0.95rem;
}

.page-image {
    max-width: 500px;
    width: 100%;
    margin-bottom: 40px;
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    body {
        padding: 40px 15px;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
    }

    nav {
        gap: 40px;
    }

    .glitch-text {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }
}
