

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

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a4a4a, #2a2a2a, #1a1a1a, #2a2a2a, #4a4a4a);
    z-index: 1000;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
}

main {
    max-width: 800px;
    margin: 40px 20px;
    padding: 60px 40px;
    background: rgba(30, 30, 35, 0.85);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(80, 80, 85, 0.5);
}

h1 {
    font-size: 4rem;
    color: #7a7a7a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-weight: normal;
    position: relative;
}

h1::before {
    content: '✝';
    font-size: 2rem;
    color: #5a5a5a;
    position: absolute;
    left: -40px;
    top: 10px;
    opacity: 0.5;
}

h1::after {
    content: '✝';
    font-size: 2rem;
    color: #5a5a5a;
    position: absolute;
    right: -40px;
    top: 10px;
    opacity: 0.5;
}

p {
	color: #8a8a8a;
}

main > p:first-of-type {
    font-size: 1.1rem;
    color: #8a8a8a;
    font-style: italic;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

main > p:first-of-type::before {
    /* content: '🕯 '; */
    /* opacity: 0.5; */
}

main > p:first-of-type::after {
    /* content: ' 🕯'; */
    /* opacity: 0.5; */
}

h2 {
    font-size: 2.5rem;
    color: #9a9a9a;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    border-radius: 5px;
    letter-spacing: 2px;
    border: 1px solid rgba(100, 100, 105, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

main p:last-of-type {
    color: #7a7a7a;
    font-size: 1rem;
    margin-top: 20px;
    font-style: italic;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.95);
    color: #6a6a6a;
    padding: 12px 20px;
    font-size: 0.75rem;
    text-align: center;
    border-top: 1px solid #3a3a3a;
    z-index: 2;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    backdrop-filter: blur(5px);
}

footer a {
    color: #8a8a8a;
    text-decoration: none;
    border-bottom: 1px dotted #6a6a6a;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #aaaaaa;
    border-bottom-color: #8a8a8a;
}


@media (min-width: 768px) {
    main {
        margin: 60px auto;
    }
}


main p:first-of-type {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}


main p:first-of-type span {
    color: #4a4a4a;
}


body {
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(40, 40, 45, 0.1) 0px,
            rgba(40, 40, 45, 0.1) 2px,
            transparent 2px,
            transparent 8px
        ),
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}


@keyframes flicker {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}


main::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6a6a6a, transparent);
}

main::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6a6a6a, transparent);
}


a {
    transition: opacity 0.3s ease;
}


img, iframe {
    filter: grayscale(100%);
}
