* {
    font-family: "Happy Monkey";
}

html {
    background-image: url(./jungle.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    margin: 0; 
    padding: 0; 
}


.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
}

#chapter1 {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    height: auto;
    width: 50%;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    width: 50%;
    color: #fff;
}

button {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    height: 60px;
    width: 20%;
    padding: 5px;
    margin: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: box-shadow 0.3s;
}

button:hover {
    box-shadow: 0 0 50px rgb(255, 255, 255);
}

.btn , .img {
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    height: 200px;
}

.letter{
    height:600px;
    border: none;
    border-radius: 15px;
}

.cardA{
    border: 3px solid gold;
    border-radius: 10px;
}

.cardB{
    border: 3px solid blue;
    border-radius: 10px;
}

.dead{
    border: 3px solid #660000 ;
    box-shadow: 0 0 50px red;
    border-radius: 10px;
    margin: 10px;
}

.disk{
    border: 3px black solid;
    border-radius: 10px;
}

.end1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.end2{
    text-align: center;
    height: auto;
    width: auto;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 50%;
}

h1{
    color:black;
    margin-top: 20px;
    margin-bottom:30px ;
    font-size:4rem;
    text-shadow: 0 0 10px blue, 0 0 20px blue, 0 0 42px violet, 0 0 82px darkblue,0 0 92px darkblue; 
    animation: blink 2s linear infinite;
}

@keyframes blink{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

p{
    color: white;
    font-weight: 500;
}