@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap'); /* Pixelated font for eerie feel */

body {
    background-image: url('image.jpeg'); /* Your background image */
    background-size: cover;
    font-family: 'VT323', monospace; /* Monospace font for that spooky, pixelated effect */
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    width: 80%;
    max-width: 600px;
    background: #3a3a3a; /* Dark gray background */
    border: 5px solid #444; /* Faint border for the "journal" feel */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); /* Red shadow for an eerie glow */
    background-image: url('https://example.com/old-paper-texture.jpg'); /* Optional - old paper texture */
    background-size: cover;
}

h1 {
    font-size: 2rem;
    color: #e63946; /* Spooky red for headings */
    text-shadow: 3px 3px 10px rgba(255, 0, 0, 0.7); /* Glowing red text shadow */
    margin-bottom: 20px;
}

.journal {
    background: rgba(0, 0, 0, 0.7); /* Slight transparency for a haunted journal feel */
    padding: 20px;
    border-radius: 10px;
    color: #f1faee; /* Light text for contrast */
    font-size: 1.2rem;
    line-height: 1.5;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); /* Glow effect on text box */
}

.journal p {
    margin-bottom: 10px;
}

.back-btn {
    background: #e63946;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-family: 'VT323', monospace;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); /* Glowing effect on button */
    transition: 0.3s ease-in-out;
}

.back-btn:hover {
    background: #d32f2f; /* Slightly darker red when hovered */
    box-shadow: 0 0 20px rgba(255, 0, 0, 1);
}

.back-btn:active {
    background: #9c1c1c; /* Dark red when clicked */
}
