html, body {
    width: 100vw;
}

body {
    background-image: url("wood_bg.jpg");
    font-family: Verdana, sans-serif;
    background-size: cover;
    padding: 0.75rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

#canvas {
    background-color: white;
    padding: 1.75rem;
    border-radius: 1.5rem;
    gap: 0.75rem;
    border: 1px solid rgb(168 162 158);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 64rem;
}

#burger_menu {
    float: right;
}

.menu_img {
    max-width: 2.5rem;
}

h1, p {
    margin-bottom: 1rem !important;
}

h1 {
    letter-spacing: -0.025em;
    line-height: 1;
    font-weight: bold !important;
    font-size: 1.875rem !important;
}

/* Non-mobile devices */
@media (min-width: 768px) {
    body {
        padding: 1.75rem;
    }
    #canvase {
        padding: 2.5rem;
    }
    #burger_menu {
        display: none;
    }
}