 /* Center the logo horizontally and vertically */
 body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo {
    max-width: 100%;
    height: auto; 
}