        body {
        background-image: url('/site/Gam2/images/Mar_Desenhar_Top_background.png');
        background-size: cover;
        background-attachment: fixed;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        user-select: none;
        -webkit-user-select: none; /* Para navegadores baseados em WebKit */
        -moz-user-select: none;    /* Para navegadores Firefox */
        -ms-user-select: none;  
        }
        
        a {
            font-family: Open Sans;
        }
        
        h2 {
            color: #fff;
            Font-family: Rock Salt;
        }
        #drawing-title {
            font-family: Open Sans;
            color: #fff;
        }

        #menu {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-top: 10px;
        }


        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            align-items: stretch;
            height: 450px;
            width: 450px;
            border: 10px solid #3d3c3c;
            border-radius: 5px;
            justify-content: center;
            background-image: linear-gradient(-140deg,#ffcc00,#e47a80);
            margin-top: 10px;
            margin-bottom: 10px;
        }
        .item {
            display: flex;
            font-weight: bold;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #3d3c3c;
            font-family: Rock Salt;
            font-size: 12px;
        }

        .gallery img {
            width: 87px;
            height: 87px;
            cursor: pointer;
        }

        #drawing-container {
            display: none;
            flex-direction: column;
            align-items: center;
            border: 10px solid #3d3c3c;
            border-radius: 5px;
            height: 450px;
            width: 450px;
            margin-top: 20px;
            color: #fff;
        }

        .menu-bar {
            font-size: 0.8em;
            margin-top: 470px;
            display: block;
            align-items: center;
            width: 450px;
            border-radius: 5px;
            background-color: #3d3c3c;
            box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            position: fixed;
        }
        .menu-bar button {
            color: #7f8080;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            width: 357px;
            float: center;
        }
        .menu-bar p {
            color: #7f8080;
            font-size: 8px;
            font-family: Open Sans;
        }
            .menu-bar .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .menu-title {
        font-family: Rock Salt;
        font-size: 20px;
        color: #3d3c3c;
        font-weight: bold;
        display: block;
        width: 100%;
        height: 50px;
        }
        .menu-bar a {
        text-decoration: none;
        color: #00b7eb;
        text-align: center;
        float: center;
        width: 357px;
        }
        
        .blink {
        animation: blink 2s infinite;
        }

        @keyframes blink {
        0% {
        opacity: 1;
        }
        50% {
        opacity: 0;
        }
        100% {
        opacity: 1;
        }
        }
        
    @media (max-width: 600px) {
        
    #drawing-container {
        width: 90vw;
        height: 90vw;
        margin: 10px auto;
    }
    
    #drawing-image {
        width: 90vw;
        height: 90vw;
    }
    
    .item {
        font-size: 10px;
    }
    
    .gallery img {
    width: 60px;
    height: 60px;
    }
    
    .gallery {
    width: 90vw;
        height: 90vw;
     max-width: 450px;
    
    }
    
    .menu-bar {
    width: 90vw;
    max-width: 450px;
    margin-top: 99%;
    }
    .menu-bar button {
    font-size: 10px;
    }
    }