        .container-cointoss {
            width: 300px;
            padding: 20px;
            border: 2px solid #000;
            border-radius: 20px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

       /* h2 {
            text-align: center;
            margin-top: 0;
        }*/

        .coin-circle {
            width: 100px;
            height: 100px;
            /*border: 2px dashed #333;*/
            border-radius: 50%;
            margin: 20px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .coin-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .results-box {
            width: 90%;
            min-width: 20px;
            border-radius: 5px;
            background-color: bisque;
            /*border: 2px dashed #333;*/
            margin: 20px auto;
            padding: 5px;
            overflow-x: auto;
            white-space: nowrap;
            font-family: monospace;
            font-size: 18px;
        }

        .heads-counter {
            width: 140px;
            height: 30px;
            border-radius: 5px;
            background-color: bisque;
            /*border: 2px dashed #333;*/
            margin: 5px auto;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
        }

        .container-cointoss .buttons {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .container-cointoss button {
            padding: 10px 30px;
            font-size: 16px;
            background-color: #1a5276;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .container-cointoss button:hover {
            background-color: #154360;
        }