   body{
            background-color: #121212;
            color: white;
            font-family: Arial;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;

            background-image: url("img/hearth.jpeg");
            background-repeat: repeat;
            background-size: 80px;
        }
        body{
            margin: 0;
        }
        .container{
            position: relative;
            z-index: 1;
            background: #1e1e1e;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);

        }
        button{
            background: #00ff88;
            border: none;
            padding: 10px 20px;
            border: 8px;
            cursor: pointer;
            font-weight: bold;


        }
        button:hover{
            background: #00cc6a;

        }
        input{
            padding: 10px;
            border-radius: 8px;
            border: none;
            margin-bottom: 10px;

        }
        #resultado{
            margin-top: 10 px;
            font-size: 18px;
            font-weight: bold;
        }
        img{
            border-radius: 10px;
            width: 200px;
            
        }
        .acertou{
            color: green;

        }
        .maior{
            color: rgb(35, 157, 238);
            
        }
        .menor{
            color: rgb(230, 207, 3);
            
        }
        .perdeu{
            color: rgb(255, 0, 0);
            
        }
        .imgs-corpo{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            display:flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;

            z-index: 0;
            pointer-events: none;

        }
        .imgs-corpo img{
            width: 100px;
            height: 100px;
        }