/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Landing page container */
.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo styling */
.logo {
    max-width: 200px; /* Set maximum width of the logo */
    width: 100%;
    height: auto;
}