body{
    background-color: rgb(1, 6, 23);
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0 auto;
    max-width: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Monospace;
    color: #f6c66b;

}

h1{ 

    background-color: #2f2e4e;
    border-radius: 5px;
    border: solid white;
    box-shadow: 3px 1px 1px rgb(0, 0, 0);

}
.game{
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1e1b3a;
    margin: 50%;
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 5px;
    border-radius: 10px;
    box-shadow:
    inset 0 -3em 3em rgba(7, 44, 89, 0.3),
    0 0 0 2px white,
    0.3em 0.3em 1em rgba(178, 178, 208, 0.6);
    gap: 10px;    
}

#paragraphtext{
    font-size: 20px;}


button{
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    transition: transform 0.1s ease;
    margin-top: 10px;

}

button:active{
    transform: scale(0.95);
}


.statusChoice{
    display: flex;
    justify-content: space-evenly;
}

.score{
    display: flex;
    justify-content: space-evenly;
    color: #2f2e4e;
    background-color: #f6c66b;
    border-radius: 10px;
}

.footer{
    display: flex;
    justify-content: center;
    margin-top: auto;

}
.popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup .overlay {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(22, 22, 22, 0.5);
    width: 100%;
    height: 100%;
}

.popup-content {
    background-color: #f6c66b;
    width: 200px;
    height: 150px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


#playAgainBtn {
    background-color: #2f2e4e;
    color: #f6c66b;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#playAgainBtn:hover {
    background-color: #1e1b3a;
    padding-bottom: 8px;
}

h2{
    color: #2f2e4e;
}
#finalResult{
    color: #2f2e4e;
    font-size: 15px;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;
}