body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161f2e;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 400px; /* Adjust as per your logo dimensions */
}

/* Responsive design for smaller screens */
@media only screen and (max-width: 600px) {
    .logo {
        width: 200px; /* Adjust for mobile screens */
    }
}
