body {
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    text-align: center;
}

.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto 20px auto;
}

h1 {
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
    text-align: left;
}

@media (max-width: 600px) {
    .header-row {
        gap: 20px;
    }
}
