body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    background-color: #ffffff; /* White background */
}

.header, .footer {
    width: 100%;
    height: 20%; /* Adjust this value as needed */
    background-color: #ffffff; /* White background for header and footer */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%; /* Adjust this value as needed */
    width: 100%;
}

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