.navigation {
    display: flex;
    min-height: 60px;
    max-width: 640px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px 25px;
    background-color: #003025;
}

.nav-title {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.nav-title > span {
    color: #fff;
    font-size: 20px;

}


.nav-button
{
    border: none;
    height : auto;
    width: 60px;
    border: solid 1px #fff;
    border-radius: 10px;
    color: #fff;
    background-color: #003025;

}

.nav-group
{
    display: flex;
    gap: 10px;
}

#canvas {
    margin: 0 auto;
}

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


    .navigation {
        min-height: 50px;
        padding: 10px 15px;
    }

    .nav-title > span {
        font-size: 15px;
    }


    .nav-button
    {
        
        width: 50px;
    }

     
}