body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
}

h1 {
    color: #a0a0a0;
}

.title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coin-box {
    position: relative;
    width: 200px;
    height: 300px; /* Taller display box */
    margin: 20px auto;
    border: 2px solid #333;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.coin-text {
    position: absolute;
    top: 50%; /* Initial position */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    user-select: none;
}

.flip-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.flip-button:hover {
    background-color: #0056b3;
}

.flip-button:active {
    background-color: #003f7f;
}

.create-game {
     color: #a0a0a0;
}

