* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif; /* Fonte Montserrat */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Container da logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Logo */
.x-logo {
    height: 180px; /* Ajuste o tamanho conforme necessário */
    width: auto;
    filter: invert(100%) sepia(100%) saturate(0%) brightness(200%); /* Torna a logo branca */
    pointer-events: none; /* Desabilita interação com a imagem */
    user-select: none; /* Impede seleção da imagem */
}

/* Responsividade para tablets e smartphones */
@media (max-width: 768px) {
    .x-logo {
        height: 120px; /* Reduz tamanho da logo em tablets */
    }
}

@media (max-width: 480px) {
    .x-logo {
        height: 80px; /* Reduz tamanho da logo em smartphones */
    }
}
