* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.container {
    text-align: center;
}

.logo-container {
    background: #f5f5f0;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.logo {
    width: 40vmin;
    height: auto;
    display: block;
}

