
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Ubuntu:wght@300&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: 0;

    font-family: "Poppings", sans-serif;
}

canvas{
    background: black;
}

body{
    background-color: #191919;
    display: flex;
    min-height: 100vh;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    color: white;
}

h1{
    margin-bottom:1rem;
}

.score{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;

}

.score--value{
    font-weight: 700;
    font-size: 3rem;
    display: block;
    margin-top: -10px;
}

.menu-screen{
    position: absolute;
    display: none;
    flex-direction: column;

    z-index: 1;
}

.game-over{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5rem;
}

.btn-play {
    border: none;
    border-radius:  100px;
    padding: 10px 15px 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;

}