File size: 1,312 Bytes
7e9dc27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <style>

        /* Fundo totalmente transparente */

        html, body {

            margin: 0;

            padding: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0) !important;

            overflow: hidden;

            display: flex;

            justify-content: center; 

            align-items: flex-start; 

        }



        .logo-container {

            margin-top: 20px; /* Distância do topo */

            /* Bloqueia qualquer interação do mouse para não atrapalhar o jogo */

            pointer-events: none; 

        }



        .logo-img {

            width: 250px; /* TAMANHO MAIOR */

            height: auto;

            opacity: 0.7; /* TRANSPARÊNCIA (0.0 a 1.0) */

            

            /* Sombra suave apenas para dar profundidade */

            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));

            

            /* Sem transições ou animações de mouse */

        }

    </style>
</head>
<body>

    <div class="logo-container">
        <!-- O nome do arquivo deve ser exatamente igual ao que está na sua pasta -->
        <img src="LOGO PNG.png" alt="Logo LUAR RP" class="logo-img">
    </div>

</body>
</html>