/* Ensure the html and body take up the full height and width */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Set the background color to black */
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

.logo {
    width: 50%; /* Scale the image to 50% of the viewport width */
    height: auto;
}
