/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
}

.logo-container {
    /* Adjust max-width as needed based on your logo size */
    max-width: 600px;
    padding: 20px;
}

.logo-container img {
    width: 100%;
    height: auto;
}