@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); /* Typewriter font for an old, retro feel */

body {
    font-family: 'Press Start 2P', monospace;
     background-image: url('image.jpeg'); /* Your background image */
    background-size: cover;
    color: #f1faee; /* Light text color for contrast */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 80%;
    max-width: 700px;
    background: #f4f1de; /* Light yellowish color for the old paper */
    background-image: url('https://example.com/old-paper-texture.jpg'); /* Add old paper texture (replace with your image URL) */
    background-size: cover;
    border: 5px solid #444; /* Faint border for the "journal" look */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Shadow to make it pop */
    position: relative;
}

.container h1 {
    font-size: 2rem;
    text-align: center;
    color: #e63946; /* Dark red for the title */
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.7); /* Glowing red text shadow */
    margin-bottom: 20px;
}

.update-log {
    font-size: 1.2rem;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.7); /* Slight transparency for creepy feel */
    color: #f1faee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Red shadow for eerie effect */
    overflow-y: scroll;
    max-height: 400px; /* Makes the log scrollable */
}

.update-log p {
    margin-bottom: 15px;
}

.update-log .bloodstain {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-image: url('https://example.com/bloodstain.png'); /* Replace with your bloodstain image URL */
    background-size: cover;
    opacity: 0.7;
}

.back-btn {
    background: #e63946;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    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;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

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

