body {
    margin: 0;
    padding: 0;
    caret-color: transparent;
    background: linear-gradient(#ffe259, #ffa751);
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;

}

header,h1 {
    margin: 0;
    padding: 0;

}


#lives{
    display: inline;
    margin-right: 50px;

}
#lives img {
    width: 30px;

}

#score {
    display: inline;
}

#start {
    width: auto;
    height: 3%;
    font-size: 15px;
    background: radial-gradient(#ffe259, #ffa751);
    margin: 10px auto;
    display: block;

}

#board {
    width: 30vw;
    height: 30vw;
    aspect-ratio: 1/1;

    background-color: #ffd500;
    background-image: repeating-linear-gradient(#d77935, #ffc800, #d77935 10%);
    clip-path: ellipse(40% 53%);

    margin: auto;
    padding: 100px;

    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

#board div {
    background-color: rgb(206, 171, 44);
    background-image: radial-gradient(#ffd500, #d77935);
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);

    display: flex;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#board div img, .bee {
    width: 60px;
    margin: auto;

}


.myheader {
    text-align: center;
    font-family: "Bowlby One SC", sans-serif;
}

#instr {
    text-align: center;
    width: 500px;
    border-radius: 20px;
    background-color: aliceblue;
    margin: auto;
    padding: 10px;
}
hr{
border-top: 2px solid #0000009c;
}
#instr ul{
    text-align: left;
}

#game_btn {
    text-decoration: none;
    border: 1px solid #000000;
    padding: 5px;
    color: #000000;
    box-shadow: 0 4px 2px -2px gray;
    background: radial-gradient(#ffe259, #ffa751);

}

#game_btn:hover {
    background-image: none;
    background-color: #d77935;
}

@media only screen and (max-width: 600px) {

    #board {
        width: auto;
        height: auto;

    }
    .myheader{
        font-size: 10px;
    }

    #board div img, .bee {
        width: 50px;
    }

    #instr {
        text-align: center;
        width: auto;
        border-radius: 20px;
        background-color: aliceblue;
        margin: auto;
        padding: 5px;
    }
}