body {
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: #fff; /* Changed background color to white */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 
                0 0 20px rgba(255, 0, 0, 0.4), 
                0 0 30px rgba(255, 0, 0, 0.2); /* Added red/blood-like box shadow */
    overflow: hidden;
    color: #000;
    border: 2px solid red; /* Added red border */
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000; /* Set text color to black */
}

p {
    font-size: 18px;
    color: #000; /* Set text color to black */
    line-height: 1.5;
}

a {
    color: #ff5050; 
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

.logo {
    display: block;
    margin: 50px auto 50px; /* Added margin */
}

/* Media queries for mobile */
@media only screen and (max-width: 600px) {
    .container {
        padding: 30px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
}
