:root {
    --background-color: #3f3f46; /* zinc-700 */
}

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

html, body {
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px; /* Adjust as needed */
    max-height: 300px; /* Adjust as needed */
    width: 100%;
    height: auto;
}
