* {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.top-menu {
display: flex;
justify-content: center;  /* Center horizontally */
align-items: center;  /* Align vertically */
gap: 200px;  /* Add space between Moves & Life */
font-size: 18px;
margin-top: 10px;
padding: 10px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 80px);
    gap: 10px;
    justify-content: center;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #54585a;
    font-size: 24px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 80px);
    gap: 10px;
    justify-content: center;
}

.card {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    border-radius: 5px;
    margin: 25px 0 0 0;
}

.moves {
    top: 8px;
    right: -120px;
}

.hidden {
    background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    color: #1a2647;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;

}
.player {
    font-size: 32px;
}
.score {
    font-size: 72px;
}


/*Highscore*/

.credits {
    position: absolute;
    bottom: 8px;
    right: 8px;
}
.credits a {
    color: #54585a;
}

.send-button {
    background-image: linear-gradient(92.88deg, #75dad1 9.16%, #43b7cc 43.89%, #3fc5d7 64.72%);
    border-radius: 8px;
    border-style: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    height: 4rem;
    padding: 0 1.6rem;
    text-align: center;
    transition: all .5s;
}
.send-button:hover {
    box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
    transition-duration: .1s;
}

.response-preview {
    background: rgba(30, 32, 44, .95);
    padding: 20px;
    font-size: 14px;
    line-height: 24px;
    min-width: 350px;
    text-align: left;
    border-radius: 14px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px, rgba(0, 0, 0, 0.24) 0px 4px 8px 0px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 8px 0px, rgba(0, 0, 0, 0.24) 0px 4px 8px 0px;
    color: #b8cdd1;
}

.bottom-menu{
    display: flex;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Align vertically */
    gap: 245px;  /* Add space between */
    font-size: 18px;
    margin-top: 10px;
    padding: 10px;
}

.modal-window{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

#pauseWindow button{
    background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    font-family: "Inter UI","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 4rem;
    padding: 0 1.6rem;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
    transition: all .5s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: 15px;
}

