@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
    background: rgb(92,47,3);
    background: radial-gradient(circle, rgba(92,47,3,1) 0%, rgba(0,0,0,1) 100%);
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: wheat;
    font-weight: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

h1, h2{
    font-family: "Bebas Neue", sans-serif;
}

p {
    font-size: 1.3rem;
    font-weight: 300;
}

div {
    font-weight: 500;
}

span {
    font-weight: bold;

    & a{
        color: wheat;
        text-decoration: none;
    }
}



canvas {
    background-color: rgb(61, 43, 29);
    color: rgb(246, 132, 51);
    border-radius: 15px;
    border: solid 3px;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    color: yellow;
    text-shadow: yellow 2px 2px 22px;
}

.score--value {
    font-weight: 700;
    font-size: 2.4rem;
    display: block;
    margin-top: -10px;
}

main {
    position: relative;
}

.menu-screen {
    position: absolute;
    left: 30%;
    top: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.game-over {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    color: orangered;
}

.final-score {
    font-weight: 500;
    font-size: 1.5rem;
}

.btn-play {
    border: none;
    border-radius: 100px;
    padding: 10px 15px 10px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #33333383;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}