#gameModal .modal-content {
    background-color: #fefefe;
    margin: 15vh auto;
    padding: 5px;
    border: 1px solid #888;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 60vh; /* Constrain height */
}

/* Pelin tyylit */
#closeDiv{
    display: flex;
    flex-direction: row-reverse;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
}
.result {
    display:flex;
    align-items: center;
}
.game-container img {
    width: 90%;
    height: 90%;    
    cursor: pointer;
    transition: transform 0.3s ease; /* Lisää siirtymäefektikuviin */
    margin: auto;
    display: block;
}

.game-container img:hover {
    transform: scale(1.1);
}


#countdown {
    font-size: 13rem;
}