
.text-responsive {
    font-size: 20rem;
    font-weight: bold;

}

.text-responsive-game-over {
    font-size: 8rem;
    font-weight: bold;

}
.text-responsive-win {
    font-size: 10rem;
    font-weight: bold;

}
.text-red{
    color:red;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.button-wrapper {
    text-align: center;
    margin-right: 20px; /* Increase the margin for more spacing */
    margin-bottom: 20px; /* Add margin to create space between rows */
}

.btn {
    margin-right: 20px; /* Increase the margin for more spacing */
}

.code-button {
    width: 100%;
    height: 70px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 40px;
    margin: 5px;
    border: thick;
    border-radius: 5px;
    cursor: pointer;
} 

.code-1 { background-color: #3498db; color: white; }
.code-2 { background-color: #e74c3c; color: white; }
.code-3 { background-color: #2ecc71; color: white; }
.code-4 { background-color: #f39c12; color: white; }
.code-5 { background-color: #9b59b6; color: white; }
.code-6 { background-color: #34495e; color: white; }
.code-7 { background-color: #1abc9c; color: white; }
.code-8 { background-color: #d35400; color: white; }
.code-9 { background-color: #c0392b; color: white; }
.code-0 { background-color: #95a5a6; color: white; }
.code-bsp { background-color: #0a0c0c; color: white; }
.correct {
    background-color: #00ff48;
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 5px;
   font-size: 3rem;
   border: 2px solid #000;
   
}

.incorrect-position {
    background-color: #007bff;
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 5px;
   font-size: 3rem;
   border: 2px solid #000;
}

.incorrect {
    background-color: #ff002f;
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 5px;
   font-size: 3rem;
   border: 2px solid #000;
}

.correctlegenda {
    background-color: #00ff48;
    color: white;
    padding: 2px;
    border-radius: 4px;
   
}

.incorrect-positionlegenda {
    background-color: #007bff;
    color: white;
    padding: 2px;
    border-radius: 4px;
   
}

.incorrectlegenda {
    background-color: #ff002f;
    color: white;
    padding: 2px;
    border-radius: 4px;
   
}


.error {
    background-color: #ffcccc;
}

.code-display {
   
    text-align: center;
    letter-spacing: 1px;
    font-size: 5rem;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.back-to-clues-button {
    width: 100%;
    height: 70px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 1rem;
    margin: 5px;
    border: thick;
    border-radius: 5px;
    cursor: pointer;
    padding: .3rem .3rem;
    vertical-align: middle;
    
} 

.heart {
	font-size: 1.1rem;
	color: #e00;
	animation: beat 10s  alternate;
	transform-origin: center;
}

@keyframes beat{
	to { transform: scale(1.4); }
}