body {
    background-color: #0c0c0c; 
    margin: 0;
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center; 
}
.coffin-box {
    background-image: url('image/Coffin.png'); 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    
    
    width: 650px; 
    height: 350px; 
    max-width: 95%;
    
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  
    padding: 40px; 
    box-sizing: border-box;
}


.coffin-box h1, .coffin-box p {
    color: #FF0000;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 20px;
}



/* This is your regular button */
.enter-button {
    display: inline-block;
    color: #ffffff;            /* White text */
    background-color: #5A189A; /* Dark purple background */
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border: 1px solid #FF0000; /* Crimson border */
    transition: all 0.3s ease; /* 👈 This makes the color change smooth instead of a harsh snap! */
}

/* 👇 THIS IS THE HOVER TRICK 👇 */
.enter-button:hover {
    color: #FF0000;            /* Text changes to blood red */
    background-color: #000000; /* Background changes to pitch black */
    border: 1px solid #5A189A; /* Border changes to purple */
    box-shadow: 0px 0px 15px #FF0000; /* Button gets a creepy red glow! */
    cursor: pointer;           /* Changes mouse pointer to a clicking hand */
}

