body, html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #0B0C10;
    color: #fff;
    font-family: Arial, sans-serif;
}
.logo {
    width: 50%;
    height: auto;
    max-width: 480px;
    max-height: 480px;
    border-radius: 50%;  
    object-fit: cover;   
    user-select: none;   
    pointer-events: none; 
}
.title {
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
}

@media (max-width: 480px) {
    .logo {
        width: 80%;
    }
}
