/* Reset and setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Set background color */
    font-family: Arial, sans-serif;
}

/* Centering the logo */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* Responsive image */
.logo {
    max-width: 100%;
    height: auto;
    display: block;
}
