body {

    background-image: url('../mirror-back.jpeg');
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: 'Pirata One', cursive;
    font-weight: 400;
    font-style: normal;
}

#story-text {
    margin: 20px;
    font-size: 25px;
    text-align: center;
    color: #3e3e3e;
    
}

.pirata-one-regular {
    font-family: "Pirata One", system-ui;
    font-weight: 400;
    font-style: normal;
  }

#choices {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-family: 'Pirata One', cursive;
color: #D9C49F;
    font-size: 18px;
    background-color: #4A1919;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b49f92;
}

button:focus {
    outline: none;
}


.game-container {
    max-width: 30%;
    margin: 50px auto;
    background-color: #9CAF88;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 1;
    height: 760px;
    overflow-y: auto;
    line-height: 1.5;
    background-image: url('../papertexture.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #9CAF88; 
    background-blend-mode: multiply; 
}

    

#final-text-1,
#final-text-2 {
    visibility: hidden;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
}

#story-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.crossed-out {
    text-decoration: line-through;
    color: red;
    pointer-events: none;
}
buttons {
   
    padding: 12px 24px; 
   
    color: #3e3e3e;
    border: dotted;
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 20px; 
    
    transition: background-color 0.3s; 
}

buttons:hover {
    color: red;
    }
    .background-gif {
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100vw; 
        height: 100vh;
        object-fit: cover; 
        z-index: 0; 
        opacity: 0.3; 
        
    }

    #story-text::first-letter {
        font-size: 45px; 
        line-height: normal;
        font-weight: bold;
        color: #4A1919; 
        font-family: "Garamond", "Georgia", serif; 
        text-shadow: 1px 1px 2px #000, 0 0 1em #333; 
        padding-right: 2px; 
    }