    /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    } */
    
    /* body {
        background-color: #9bfaf484;
    } */
    
    .wrapper {
        border-radius: 16px;
        /* box-shadow: 0 1em 2em rgba(40, 4, 67, 0.3); */
        backdrop-filter: blur(7.9px);
        -webkit-backdrop-filter: blur(7.9px);
        /* border: 5px solid rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 0.32); */
        width: 100vw;
        height: 100%;
        position: absolute;
    }

    *{
        color: white;
    }
    
    .hra {
        width: 500px;
        height: 500px;
        background-color: #2C3E50;
        border-radius: 8%;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
    
    .barvy {
        --gap: 4px;
        height: calc(50vh - var(--gap));
        width: calc(50vw - var(--gap));
        position: absolute;
        cursor: pointer;
    }
    
    .barva1 {
        background: #239B56;
        /* border-radius: 15px 0 0 0; */
        top: 0px;
        left: 0px;
    }
    
    .barva2 {
        background: #922B21;
        /* border-radius: 0px 15px 0 0; */
        top: 0px;
        right: 0px;
    }
    
    .barva3 {
        background: #2874A6;
        /* border-radius: 0 0 15px 0; */
        bottom: 0px;
        right: 0px;
    }
    
    .barva4 {
        background: #B7950B;
        /* border-radius: 0 0 0 15px; */
        bottom: 0px;
        left: 0px;
    }
    
    .hra::before {
        position: absolute;
        content: "";
        /* background-color: #9bfaf4; */
        width: 190px;
        height: 190px;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        z-index: 1;
        border-radius: 30%;
    }
    
    #score {
        margin-left: 2%;
    }
    
    #highscore {
        margin-right: 2%;
    }

    #scorecontainer{
        position: fixed;
        display: flex;
        justify-content: space-between;
        top: 0px;
        padding-top: 45px;
        padding-bottom: 10px;
        width: 100vw;
        /* background: rgba(28, 40, 51, 0.5); */
        /* backdrop-filter: blur(20px); */
        pointer-events: none;
    }

    #start-btn{
        color: black;
    }

    #vysledek{
        font-weight: 600;
    }
    
    .container {
        /* background-color: #9bfaf484; */
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hided {
        display: none;
    }
    
    .container button {
        background: white;
        /* border: 1px solid rgba(255, 255, 255, 0.486);
        border: 5px solid rgba(255, 255, 255, 1); */
        border-radius: 10px;
        padding: 18px 22px;
        /* box-shadow: 0 1.6em 2.4em rgba(40, 4, 67, 0.3); */
        font-size: 20px;
        font-weight: 600;
        outline: none;
        border: none;
        stroke: none;
    }
    
    .container p {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .container span {
        font-weight: 600;
    }