:root {
    --bg-color: #6e6c6c;
    --text-color: #EEEEEE;
    --accent-color: #CC5500;
    --shadow-color: #4B0082;
    --mainline-color: #B87333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Fade-in animation for page text */
@keyframes textFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    opacity: 0;
    animation: textFadeIn 2s ease-in forwards;
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.85;
    z-index: -2;
}
h1 {
    color: var(--accent-color);
    text-shadow: 1px 1px 2px var(--shadow-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
}
p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--mainline-color);
}
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #b64a00;
}
