@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: "Poppings", sans-serif;
}

body{
    background-color: #191919;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #c1c1c1;
}

canvas {
    background-color: #111;
}

.score{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
}

.score--value,
.score--value2,
.score--value3{
    font-weight: 700;
    font-size: 4.5rem;
    display: block;
    margin-top: -8px;;
}

.menu-screen,
.pause-screen{
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    border: #c1c1c1 2px solid;
    border-radius: 10px;
    background-color: #111;
    width: 25rem;
}

.start-screen{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    border: #c1c1c1 2px solid;
    border-radius: 10px;
    background-color: #111;
    width: 25rem;
}

.title{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    padding-top: 2rem;
}

.final-score,
.best-score,
.best-score,
.score1,
.last-scorer{
    font-weight: 500;
    font-size: 1.5rem;
}

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

.top-menu{
    display: flex;
    justify-content: space-between;
    width: 64vh;
    align-items: end;
}

.dark-mode,
.btn-pause{
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-bottom: 0.5em;
    color: #c1c1c1;
}
