.ctext{
  font-family: 'Comic Sans', cursive;
font-size: 13px;
text-transform: capitalize;
 text-align: bottom;
justify-content: flex-end; 
width:100px;
}

.charcent {
   display: flex;
  justify-content: center;
  align-items: center;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2E8B57;
    color: white;
    text-align: center;
}

.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 600px;
    background-color: #1E3A2D;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 20px;
}

.currency-display {
    margin-bottom: 20px;
}

.game-display {
    display: flex;
    margin-bottom: 20px;

}

.character {
    border: 2px solid #FFF;
    border-radius: 10px;
    padding: 10px;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
}

.hand {
  border: 2px solid #FFF;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
 justify-content: space-around;
	display: flex;
    flex-direction:row;
	align-items: center;
	margin-top: 10px;
}

.card {

    width: 60px;
    height: 90px;
    background-color: #FFF;
    border-radius: 5px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    transition: transform 0.5s;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.message {
    margin-top: 20px;
    font-size: 1.2em;
}