/* modern-reset.css or similar logic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a243f;
    /* Updated to hex value as requested */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
    text-align: center;
    perspective: 1000px;
}

#main-logo {
    max-width: 300px;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}