/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: white;
}

/* Centered container */
.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Logo styling */
.logo {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}
